| 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 b08a210611a751e3eb8104d0d974e802a828c078..db51f3c455d18f7557459bb4e4e0d17f54ae6174 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -81,7 +81,6 @@ class WebLayer;
|
| namespace content {
|
| class InputRouter;
|
| class MockRenderWidgetHost;
|
| -class OverscrollController;
|
| class RenderWidgetHostDelegate;
|
| class RenderWidgetHostViewBase;
|
| class SyntheticGestureController;
|
| @@ -471,13 +470,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| // Update the renderer's cache of the screen rect of the view and window.
|
| void SendScreenRects();
|
|
|
| - OverscrollController* overscroll_controller() const {
|
| - return overscroll_controller_.get();
|
| - }
|
| -
|
| - // Sets whether the overscroll controller should be enabled for this page.
|
| - void SetOverscrollControllerEnabled(bool enabled);
|
| -
|
| // Suppreses future char events until a keydown. See
|
| // suppress_next_char_events_.
|
| void SuppressNextCharEvents();
|
| @@ -585,9 +577,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| int increment_in_flight_event_count() { return ++in_flight_event_count_; }
|
| int decrement_in_flight_event_count() { return --in_flight_event_count_; }
|
|
|
| - // Returns whether an overscroll gesture is in progress.
|
| - bool IsInOverscrollGesture() const;
|
| -
|
| // The View associated with the RenderViewHost. The lifetime of this object
|
| // is associated with the lifetime of the Render process. If the Renderer
|
| // crashes, its View is destroyed and this pointer becomes NULL, even though
|
| @@ -683,7 +672,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| virtual void IncrementInFlightEventCount() OVERRIDE;
|
| virtual void DecrementInFlightEventCount() OVERRIDE;
|
| virtual void OnHasTouchEventHandlers(bool has_handlers) OVERRIDE;
|
| - virtual OverscrollController* GetOverscrollController() const OVERRIDE;
|
| virtual void DidFlush() OVERRIDE;
|
|
|
| // InputAckHandler
|
| @@ -864,8 +852,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
| // Receives and handles all input events.
|
| scoped_ptr<InputRouter> input_router_;
|
|
|
| - scoped_ptr<OverscrollController> overscroll_controller_;
|
| -
|
| scoped_ptr<TimeoutMonitor> hang_monitor_timeout_;
|
|
|
| #if defined(OS_WIN)
|
|
|