Chromium Code Reviews

Unified Diff: content/browser/renderer_host/input/touch_emulator_unittest.cc

Issue 2808763009: Allow content embedder to set a cursor for RenderWidgetHost (Closed)
Patch Set: CursorInfo Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: content/browser/renderer_host/input/touch_emulator_unittest.cc
diff --git a/content/browser/renderer_host/input/touch_emulator_unittest.cc b/content/browser/renderer_host/input/touch_emulator_unittest.cc
index 101675aff8135ba674a02c5a7ed7025ddc44d976..510a96aef9b3db2968db271b4dfc8f173492fbd6 100644
--- a/content/browser/renderer_host/input/touch_emulator_unittest.cc
+++ b/content/browser/renderer_host/input/touch_emulator_unittest.cc
@@ -239,7 +239,7 @@ class TouchEmulatorTest : public testing::Test,
void DisableSynchronousTouchAck() { ack_touches_synchronously_ = false; }
float GetCursorScaleFactor() {
- WebCursor::CursorInfo info;
+ CursorInfo info;
cursor_.GetCursorInfo(&info);
return info.image_scale_factor;
}

Powered by Google App Engine