| Index: android_webview/browser/renderer_host/aw_render_view_host_ext.h
|
| diff --git a/android_webview/browser/renderer_host/aw_render_view_host_ext.h b/android_webview/browser/renderer_host/aw_render_view_host_ext.h
|
| index 678ef1a05740531b6f87802d9bce0eb1bc6f7909..fae35e9b050f1d874815d66d85dc63baab3fe344 100644
|
| --- a/android_webview/browser/renderer_host/aw_render_view_host_ext.h
|
| +++ b/android_webview/browser/renderer_host/aw_render_view_host_ext.h
|
| @@ -25,17 +25,9 @@ namespace android_webview {
|
| class AwRenderViewHostExt : public content::WebContentsObserver,
|
| public base::NonThreadSafe {
|
| public:
|
| - class Client {
|
| - public:
|
| - virtual void OnPictureUpdated(int process_id, int render_view_id) = 0;
|
| -
|
| - protected:
|
| - virtual ~Client() {}
|
| - };
|
| -
|
| // To send receive messages to a RenderView we take the WebContents instance,
|
| // as it internally handles RenderViewHost instances changing underneath us.
|
| - AwRenderViewHostExt(content::WebContents* contents, Client* client);
|
| + AwRenderViewHostExt(content::WebContents* contents);
|
| virtual ~AwRenderViewHostExt();
|
|
|
| // |result| will be invoked with the outcome of the request.
|
| @@ -58,14 +50,6 @@ class AwRenderViewHostExt : public content::WebContentsObserver,
|
| // the corresponding public WebView API is as well.
|
| const AwHitTestData& GetLastHitTestData() const;
|
|
|
| - // Enables updating picture piles on every new frame.
|
| - // OnPictureUpdated is called when a new picture is available,
|
| - // stored by renderer id in RendererPictureMap.
|
| - void EnableCapturePictureCallback(bool enabled);
|
| -
|
| - // Captures the latest available picture pile synchronously.
|
| - void CapturePictureSync();
|
| -
|
| // Sets the zoom level for text only. Used in layout modes other than
|
| // Text Autosizing.
|
| void SetTextZoomLevel(double level);
|
| @@ -93,8 +77,6 @@ class AwRenderViewHostExt : public content::WebContentsObserver,
|
|
|
| bool has_new_hit_test_data_;
|
|
|
| - Client* client_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(AwRenderViewHostExt);
|
| };
|
|
|
|
|