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

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

Issue 290473006: Add a TouchEventStreamValidator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 6 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
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
7 7
8 #include <queue> 8 #include <queue>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 // Defaults to ACK_SOURCE_NONE. 268 // Defaults to ACK_SOURCE_NONE.
269 AckSource current_ack_source_; 269 AckSource current_ack_source_;
270 270
271 // Whether a call to |Flush()| has yet been accompanied by a |DidFlush()| call 271 // Whether a call to |Flush()| has yet been accompanied by a |DidFlush()| call
272 // to the client_ after all events have been dispatched/acked. 272 // to the client_ after all events have been dispatched/acked.
273 bool flush_requested_; 273 bool flush_requested_;
274 274
275 TouchEventQueue touch_event_queue_; 275 TouchEventQueue touch_event_queue_;
276 GestureEventQueue gesture_event_queue_; 276 GestureEventQueue gesture_event_queue_;
277 TouchActionFilter touch_action_filter_; 277 TouchActionFilter touch_action_filter_;
278 InputEventStreamValidator event_stream_validator_; 278 InputEventStreamValidator input_stream_validator_;
279 InputEventStreamValidator output_stream_validator_;
279 280
280 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); 281 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl);
281 }; 282 };
282 283
283 } // namespace content 284 } // namespace content
284 285
285 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ 286 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/input/input_router_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698