| Index: android_webview/renderer/aw_render_view_ext.h
|
| ===================================================================
|
| --- android_webview/renderer/aw_render_view_ext.h (revision 182123)
|
| +++ android_webview/renderer/aw_render_view_ext.h (working copy)
|
| @@ -9,7 +9,9 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "content/public/renderer/render_view_observer.h"
|
| +#include "skia/ext/refptr.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebPermissionClient.h"
|
| +#include "third_party/skia/include/core/SkPicture.h"
|
|
|
| namespace WebKit {
|
|
|
| @@ -40,7 +42,6 @@
|
| virtual void DidCommitProvisionalLoad(WebKit::WebFrame* frame,
|
| bool is_new_navigation) OVERRIDE;
|
| virtual void FocusedNodeChanged(const WebKit::WebNode& node) OVERRIDE;
|
| - virtual void DidCommitCompositorFrame() OVERRIDE;
|
|
|
| void OnDocumentHasImagesRequest(int id);
|
|
|
| @@ -48,6 +49,8 @@
|
|
|
| void OnEnableCapturePictureCallback(bool enable);
|
|
|
| + void OnPictureUpdate(skia::RefPtr<SkPicture> picture);
|
| +
|
| void OnCapturePictureSync();
|
|
|
| // WebKit::WebPermissionClient implementation.
|
| @@ -55,8 +58,6 @@
|
| bool enabledPerSettings,
|
| const WebKit::WebURL& imageURL) OVERRIDE;
|
|
|
| - bool capture_picture_enabled_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(AwRenderViewExt);
|
| };
|
|
|
|
|