Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Side by Side Diff: content/renderer/gpu/input_handler_proxy_client.h

Issue 52663003: Remove all fling related stuff from the renderer assuming that browser side Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_ 5 #ifndef CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_
6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_ 6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_
7 7
8 namespace WebKit { 8 namespace WebKit {
9 class WebGestureCurve;
10 struct WebActiveWheelFlingParameters;
11 struct WebFloatPoint; 9 struct WebFloatPoint;
12 struct WebSize; 10 struct WebSize;
13 } 11 }
14 12
15 namespace content { 13 namespace content {
16 14
17 // All callbacks invoked from the compositor thread. 15 // All callbacks invoked from the compositor thread.
18 class InputHandlerProxyClient { 16 class InputHandlerProxyClient {
19 public: 17 public:
20 // Called just before the InputHandlerProxy shuts down. 18 // Called just before the InputHandlerProxy shuts down.
21 virtual void WillShutdown() = 0; 19 virtual void WillShutdown() = 0;
22 20
23 // Transfers an active wheel fling animation initiated by a previously
24 // handled input event out to the client.
25 virtual void TransferActiveWheelFlingAnimation(
26 const WebKit::WebActiveWheelFlingParameters& params) = 0;
27
28 // Creates a new fling animation curve instance for device |device_source|
29 // with |velocity| and already scrolled |cumulative_scroll| pixels.
30 virtual WebKit::WebGestureCurve* CreateFlingAnimationCurve(
31 int device_source,
32 const WebKit::WebFloatPoint& velocity,
33 const WebKit::WebSize& cumulative_scroll) = 0;
34
35 virtual void DidOverscroll(const cc::DidOverscrollParams& params) = 0; 21 virtual void DidOverscroll(const cc::DidOverscrollParams& params) = 0;
36 22
37 protected: 23 protected:
38 virtual ~InputHandlerProxyClient() {} 24 virtual ~InputHandlerProxyClient() {}
39 }; 25 };
40 26
41 } // namespace content 27 } // namespace content
42 28
43 #endif // CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_ 29 #endif // CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/input_handler_proxy.cc ('k') | content/renderer/gpu/input_handler_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698