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

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

Issue 2683043004: Remove ui/events/blink dependency on blink_minimal. (Closed)
Patch Set: fix win debug Created 3 years, 10 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 4aba6ca684340a19ebfcf2f3d59a5dc9bea71323..15687ea1332a510be48eb392eaeae84b534c3fec 100644
--- a/content/renderer/input/input_handler_manager.h
+++ b/content/renderer/input/input_handler_manager.h
@@ -84,12 +84,12 @@ class CONTENT_EXPORT InputHandlerManager {
using InputEventAckStateCallback =
base::Callback<void(InputEventAckState,
- blink::WebScopedInputEvent,
+ ui::WebScopedInputEvent,
const ui::LatencyInfo&,
std::unique_ptr<ui::DidOverscrollParams>)>;
// Called from the compositor's thread.
virtual void HandleInputEvent(int routing_id,
- blink::WebScopedInputEvent input_event,
+ ui::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
const InputEventAckStateCallback& callback);
@@ -108,7 +108,7 @@ class CONTENT_EXPORT InputHandlerManager {
// Called from the compositor's thread.
void DispatchNonBlockingEventToMainThread(
int routing_id,
- blink::WebScopedInputEvent event,
+ ui::WebScopedInputEvent event,
const ui::LatencyInfo& latency_info);
private:
@@ -136,7 +136,7 @@ class CONTENT_EXPORT InputHandlerManager {
void DidHandleInputEventAndOverscroll(
const InputEventAckStateCallback& callback,
ui::InputHandlerProxy::EventDisposition event_disposition,
- blink::WebScopedInputEvent input_event,
+ ui::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
std::unique_ptr<ui::DidOverscrollParams> overscroll_params);

Powered by Google App Engine
This is Rietveld 408576698