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

Unified Diff: content/renderer/input/input_event_filter.cc

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_event_filter.cc
diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
index f3da1c91bc0ff2341c897bbe23c62cd80978bf0a..7b268c07c9fc14fad66a4de3f19986dfe005c076 100644
--- a/content/renderer/input/input_event_filter.cc
+++ b/content/renderer/input/input_event_filter.cc
@@ -97,7 +97,7 @@ void InputEventFilter::DidStopFlinging(int routing_id) {
void InputEventFilter::DispatchNonBlockingEventToMainThread(
int routing_id,
- blink::WebScopedInputEvent event,
+ ui::WebScopedInputEvent event,
const ui::LatencyInfo& latency_info) {
DCHECK(target_task_runner_->BelongsToCurrentThread());
RouteQueueMap::iterator iter = route_queues_.find(routing_id);
@@ -212,7 +212,7 @@ void InputEventFilter::ForwardToHandler(const IPC::Message& message,
InputMsg_HandleInputEvent::Param params;
if (!InputMsg_HandleInputEvent::Read(&message, &params))
return;
- blink::WebScopedInputEvent event =
+ ui::WebScopedInputEvent event =
ui::WebInputEventTraits::Clone(*std::get<0>(params));
ui::LatencyInfo latency_info = std::get<2>(params);
InputEventDispatchType dispatch_type = std::get<3>(params);
@@ -234,7 +234,7 @@ void InputEventFilter::DidForwardToHandlerAndOverscroll(
int routing_id,
InputEventDispatchType dispatch_type,
InputEventAckState ack_state,
- blink::WebScopedInputEvent event,
+ ui::WebScopedInputEvent event,
const ui::LatencyInfo& latency_info,
std::unique_ptr<DidOverscrollParams> overscroll_params) {
bool send_ack = dispatch_type == DISPATCH_TYPE_BLOCKING;

Powered by Google App Engine
This is Rietveld 408576698