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

Unified Diff: ui/events/blink/input_handler_proxy_unittest.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: ui/events/blink/input_handler_proxy_unittest.cc
diff --git a/ui/events/blink/input_handler_proxy_unittest.cc b/ui/events/blink/input_handler_proxy_unittest.cc
index 85e9b46ee9a37d25771c020cfe4741a78ca31420..c6e99b26cb0dc41f915375d2a9ff1106a2301a44 100644
--- a/ui/events/blink/input_handler_proxy_unittest.cc
+++ b/ui/events/blink/input_handler_proxy_unittest.cc
@@ -122,10 +122,10 @@ WebGestureEvent CreateFling(WebGestureDevice source_device,
modifiers);
}
-blink::WebScopedInputEvent CreateGestureScrollOrPinch(WebInputEvent::Type type,
- float deltaYOrScale = 0,
- int x = 0,
- int y = 0) {
+WebScopedInputEvent CreateGestureScrollOrPinch(WebInputEvent::Type type,
+ float deltaYOrScale = 0,
+ int x = 0,
+ int y = 0) {
WebGestureEvent gesture(type, WebInputEvent::NoModifiers,
WebInputEvent::TimeStampForTesting);
gesture.sourceDevice = blink::WebGestureDeviceTouchpad;
@@ -273,7 +273,7 @@ class MockInputHandlerProxyClient
void(const WebInputEvent&));
void DispatchNonBlockingEventToMainThread(
- blink::WebScopedInputEvent event,
+ WebScopedInputEvent event,
const ui::LatencyInfo& latency_info) override {
CHECK(event.get());
DispatchNonBlockingEventToMainThread_(*event.get());
@@ -510,7 +510,7 @@ class InputHandlerProxyEventQueueTest : public testing::Test {
void DidHandleInputEventAndOverscroll(
InputHandlerProxy::EventDisposition event_disposition,
- blink::WebScopedInputEvent input_event,
+ WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
std::unique_ptr<ui::DidOverscrollParams> overscroll_params) {
event_disposition_recorder_.push_back(event_disposition);

Powered by Google App Engine
This is Rietveld 408576698