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

Unified Diff: content/renderer/input/input_handler_manager.h

Issue 2576013002: Introducing WebCoalescedInputEvent and inclusion in content/common (Closed)
Patch Set: Fix a few DCHECK hits Created 3 years, 11 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/input/input_handler_manager.h
diff --git a/content/renderer/input/input_handler_manager.h b/content/renderer/input/input_handler_manager.h
index 3e92b92581077433ee16e233ee54aef02ce51f7d..4d936fdf47f840a46bc347ecc6c7567ad8e315c1 100644
--- a/content/renderer/input/input_handler_manager.h
+++ b/content/renderer/input/input_handler_manager.h
@@ -83,12 +83,12 @@ class CONTENT_EXPORT InputHandlerManager {
using InputEventAckStateCallback =
base::Callback<void(InputEventAckState,
- ui::ScopedWebInputEvent,
+ blink::WebScopedInputEvent,
const ui::LatencyInfo&,
std::unique_ptr<ui::DidOverscrollParams>)>;
// Called from the compositor's thread.
virtual void HandleInputEvent(int routing_id,
- ui::ScopedWebInputEvent input_event,
+ blink::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
const InputEventAckStateCallback& callback);
@@ -107,7 +107,7 @@ class CONTENT_EXPORT InputHandlerManager {
// Called from the compositor's thread.
void DispatchNonBlockingEventToMainThread(
int routing_id,
- ui::ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const ui::LatencyInfo& latency_info);
private:
@@ -135,7 +135,7 @@ class CONTENT_EXPORT InputHandlerManager {
void DidHandleInputEventAndOverscroll(
const InputEventAckStateCallback& callback,
ui::InputHandlerProxy::EventDisposition event_disposition,
- ui::ScopedWebInputEvent input_event,
+ blink::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
std::unique_ptr<ui::DidOverscrollParams> overscroll_params);

Powered by Google App Engine
This is Rietveld 408576698