summaryrefslogtreecommitdiffstats
path: root/cc/input/input_handler.h
diff options
context:
space:
mode:
authorhshi@chromium.org <hshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 00:25:40 +0000
committerhshi@chromium.org <hshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 00:25:40 +0000
commit035572d586ddf5022ff036441eec9d9704b4e56c (patch)
tree859a30228a419d2deb6c3ce9093a6eebc57256c6 /cc/input/input_handler.h
parent4cdd68e28791b386888c5889754c5c250fb9807d (diff)
downloadchromium_src-035572d586ddf5022ff036441eec9d9704b4e56c.zip
chromium_src-035572d586ddf5022ff036441eec9d9704b4e56c.tar.gz
chromium_src-035572d586ddf5022ff036441eec9d9704b4e56c.tar.bz2
Revert 197178 "Make it possible to delegate root layer scroll of..."
> Make it possible to delegate root layer scroll offset outside of cc. > > This change makes it possible for the embedder to own the root layer > scroll offset. > > BUG=b/6029133 > > Review URL: https://chromiumcodereview.appspot.com/13869006 Fixes TreeCloser Bug 236675 TBR=mkosiba@chromium.org Review URL: https://codereview.chromium.org/14564002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/input/input_handler.h')
-rw-r--r--cc/input/input_handler.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/cc/input/input_handler.h b/cc/input/input_handler.h
index b3f805e..982befa 100644
--- a/cc/input/input_handler.h
+++ b/cc/input/input_handler.h
@@ -19,8 +19,6 @@ class Vector2dF;
namespace cc {
-class LayerScrollOffsetDelegate;
-
// The InputHandler is a way for the embedders to interact with the impl thread
// side of the compositor implementation. There is one InputHandler per
// LayerTreeHost. To use the input handler, implement the InputHanderClient
@@ -64,16 +62,6 @@ class CC_EXPORT InputHandler {
// returned ScrollStarted.
virtual void ScrollEnd() = 0;
- virtual void SetRootLayerScrollOffsetDelegate(
- LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate) = 0;
-
- // Called when the value returned by
- // LayerScrollOffsetDelegate.GetTotalScrollOffset has changed for reasons
- // other than a SetTotalScrollOffset call.
- // NOTE: This should only called after a valid delegate was set via a call to
- // SetRootLayerScrollOffsetDelegate.
- virtual void OnRootLayerDelegatedScrollOffsetChanged() = 0;
-
virtual void PinchGestureBegin() = 0;
virtual void PinchGestureUpdate(float magnify_delta, gfx::Point anchor) = 0;
virtual void PinchGestureEnd() = 0;