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

Unified Diff: content/renderer/gpu/input_handler_proxy_client.h

Issue 13844021: Move compositor thread input handling logic into content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win component build Created 7 years, 8 months 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/gpu/input_handler_proxy_client.h
diff --git a/content/renderer/gpu/input_handler_proxy_client.h b/content/renderer/gpu/input_handler_proxy_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..cdfc69961d7d11e15280e7f84812236bbba6a569
--- /dev/null
+++ b/content/renderer/gpu/input_handler_proxy_client.h
@@ -0,0 +1,52 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_
+#define CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_
+
+namespace WebKit {
+class WebGestureCurve;
+struct WebActiveWheelFlingParameters;
+struct WebFloatPoint;
+struct WebSize;
+}
+
+namespace content {
+
+class InputHandlerProxyClient {
+ public:
+ // Callbacks invoked from the compositor thread.
danakj 2013/05/06 16:33:39 This comment is placed like it only refers to one
+ virtual void WillShutdown() = 0;
+
+ // Exactly one of the following two callbacks will be invoked after every
+ // call to InputHandlerClientImpl::handleInputEvent():
danakj 2013/05/06 16:33:39 IHProxy::/H/andleInputEvent
+
+ // Called when the InputHandlerClientImpl handled the input event and no
danakj 2013/05/06 16:33:39 IHProxy throughout this file's comments
+ // further processing is required.
+ virtual void DidHandleInputEvent() = 0;
+
+ // Called when the InputHandlerClientImpl did not handle the input event.
+ // If send_to_widget is true, the input event should be forwarded to the
+ // WebWidget associated with this compositor for further processing.
+ virtual void DidNotHandleInputEvent(bool send_to_widget) = 0;
+
+ // Transfers an active wheel fling animation initiated by a previously
+ // handled input event out to the client.
+ virtual void TransferActiveWheelFlingAnimation(
+ const WebKit::WebActiveWheelFlingParameters& params) = 0;
+
+ // Creates a new fling animation curve instance for device |device_source|
+ // with |velocity| and already scrolled |cumulative_scroll| pixels.
+ virtual WebKit::WebGestureCurve* CreateFlingAnimationCurve(
+ int device_source,
+ const WebKit::WebFloatPoint& velocity,
+ const WebKit::WebSize& cumulative_scroll) = 0;
+
+ protected:
+ virtual ~InputHandlerProxyClient() {}
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_GPU_INPUT_HANDLER_PROXY_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698