Index: android_webview/browser/browser_view_renderer_client.h |
diff --git a/android_webview/browser/browser_view_renderer_client.h b/android_webview/browser/browser_view_renderer_client.h |
index 064f766aa9c3aaf14fb47daa04b32e7b89640d68..ba154b6d31a333d44e05097fb9f3ae200d4922ce 100644 |
--- a/android_webview/browser/browser_view_renderer_client.h |
+++ b/android_webview/browser/browser_view_renderer_client.h |
@@ -15,11 +15,6 @@ struct ParentCompositorDrawConstraints; |
class BrowserViewRendererClient { |
public: |
- // Request DrawGL to be in called AwDrawGLInfo::kModeProcess type. |
- // |wait_for_completion| will cause the call to block until DrawGL has |
- // happened. The callback may never be made, and the mode may be promoted to |
- // kModeDraw. |
- virtual bool RequestDrawGL(bool wait_for_completion) = 0; |
// Called when a new Picture is available. Needs to be enabled |
// via the EnableOnNewPicture method. |
@@ -30,10 +25,6 @@ class BrowserViewRendererClient { |
// calls invalidate. |
virtual void PostInvalidate() = 0; |
- // Call postInvalidateOnAnimation for invalidations. This is only used to |
- // synchronize draw functor destruction. |
- virtual void DetachFunctorFromView() = 0; |
- |
// Called to get view's absolute location on the screen. |
virtual gfx::Point GetLocationOnScreen() = 0; |
@@ -55,12 +46,6 @@ class BrowserViewRendererClient { |
virtual void DidOverscroll(const gfx::Vector2d& overscroll_delta, |
const gfx::Vector2dF& overscroll_velocity) = 0; |
- // Visible for testing |
- // Called when the parent draw constraints in browser view renderer gets |
- // updated. |
- virtual void ParentDrawConstraintsUpdated( |
- const ParentCompositorDrawConstraints& draw_constraints) = 0; |
- |
protected: |
virtual ~BrowserViewRendererClient() {} |
}; |