| Index: content/browser/renderer_host/render_widget_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
| index 139ea3b7cffd4abee947b36cc1c86c8b5e495eb4..3498533e5f6b0b8cd6e099654479226c7323eac2 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -242,11 +242,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| // Noifies the RenderWidget of the current mouse cursor visibility state.
|
| void SendCursorVisibilityState(bool is_visible);
|
|
|
| - // Tells us whether the page is rendered directly via the GPU process.
|
| - bool is_accelerated_compositing_active() {
|
| - return is_accelerated_compositing_active_;
|
| - }
|
| -
|
| // Notifies the RenderWidgetHost that the View was destroyed.
|
| void ViewDestroyed();
|
|
|
| @@ -652,7 +647,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| const std::vector<gfx::Rect>& character_bounds);
|
| #endif
|
| void OnImeCancelComposition();
|
| - void OnDidActivateAcceleratedCompositing(bool activated);
|
| void OnLockMouse(bool user_gesture,
|
| bool last_unlocked_by_target,
|
| bool privileged);
|
| @@ -739,9 +733,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| // Indicates whether a page is fullscreen or not.
|
| bool is_fullscreen_;
|
|
|
| - // True when a page is rendered directly via the GPU process.
|
| - bool is_accelerated_compositing_active_;
|
| -
|
| // Set if we are waiting for a repaint ack for the view.
|
| bool repaint_ack_pending_;
|
|
|
|
|