blob: fa31bd240164f23bc322f879ee19ecd166347d17 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_
#define ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_
#include "content/public/renderer/render_frame_observer.h"
namespace android_webview {
class PrintRenderFrameObserver : public content::RenderFrameObserver {
public:
explicit PrintRenderFrameObserver(content::RenderFrame* render_view);
private:
virtual ~PrintRenderFrameObserver();
// RenderFrameObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
// IPC handlers
void OnPrintNodeUnderContextMenu();
DISALLOW_COPY_AND_ASSIGN(PrintRenderFrameObserver);
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_RENDERER_PRINT_RENDER_FRAME_OBSERVER_H_