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

Side by Side Diff: content/browser/renderer_host/input/input_router_client.h

Issue 20356003: Provided batched input delivery with a BufferedInputRouter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: BufferedInputRouter unit tests Created 7 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/port/browser/event_with_latency_info.h" 9 #include "content/port/browser/event_with_latency_info.h"
10 #include "content/port/common/input_event_ack_state.h" 10 #include "content/port/common/input_event_ack_state.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual bool OnSendGestureEvent( 55 virtual bool OnSendGestureEvent(
56 const GestureEventWithLatencyInfo& gesture_event) = 0; 56 const GestureEventWithLatencyInfo& gesture_event) = 0;
57 virtual bool OnSendMouseEventImmediately( 57 virtual bool OnSendMouseEventImmediately(
58 const MouseEventWithLatencyInfo& mouse_event) = 0; 58 const MouseEventWithLatencyInfo& mouse_event) = 0;
59 virtual bool OnSendTouchEventImmediately( 59 virtual bool OnSendTouchEventImmediately(
60 const TouchEventWithLatencyInfo& touch_event) = 0; 60 const TouchEventWithLatencyInfo& touch_event) = 0;
61 virtual bool OnSendGestureEventImmediately( 61 virtual bool OnSendGestureEventImmediately(
62 const GestureEventWithLatencyInfo& gesture_event) = 0; 62 const GestureEventWithLatencyInfo& gesture_event) = 0;
63 63
64 // Called upon event ack receipt from the renderer. 64 // Called upon event ack receipt from the renderer.
65 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event, 65 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event,
aelias_OOO_until_Jul13 2013/08/13 06:11:51 I think these should be moved into "InputAckHandle
jdduke (slow) 2013/08/13 15:29:48 I would love for this to be the case. As it stand
66 InputEventAckState ack_result) = 0; 66 InputEventAckState ack_result) = 0;
67 virtual void OnWheelEventAck(const WebKit::WebMouseWheelEvent& event, 67 virtual void OnWheelEventAck(const WebKit::WebMouseWheelEvent& event,
68 InputEventAckState ack_result) = 0; 68 InputEventAckState ack_result) = 0;
69 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event, 69 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event,
70 InputEventAckState ack_result) = 0; 70 InputEventAckState ack_result) = 0;
71 virtual void OnGestureEventAck(const WebKit::WebGestureEvent& event, 71 virtual void OnGestureEventAck(const WebKit::WebGestureEvent& event,
72 InputEventAckState ack_result) = 0; 72 InputEventAckState ack_result) = 0;
73 virtual void OnUnexpectedEventAck(bool bad_message) = 0; 73 virtual void OnUnexpectedEventAck(bool bad_message) = 0;
74
75 // Certain router implementations require periodic flushing of queued events.
76 // When this method is called, the client should ensure a timely call, either
77 // synchronous or asynchronous, of |Flush| on the InputRouter.
78 virtual void SetNeedsFlush() = 0;
79
80 // Called when the router has finished flushing all events queued at the time
81 // of the call to Flush. The call will typically be asynchronous with
82 // respect to the call to |Flush| on the InputRouter.
83 virtual void DidFlush() = 0;
74 }; 84 };
75 85
76 } // namespace content 86 } // namespace content
77 87
78 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_ 88 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698