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

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

Issue 2250233002: Type->String helper function added to WebInputEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Blink_Common_export instead of blink_export Created 4 years, 4 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/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 57c341fbba4755264ab17724e5e88d60a1c29ece..2a2e05be6060a60b9a1a39d49395f43438d5bd56 100644
--- a/content/browser/renderer_host/input/touch_emulator_unittest.cc
+++ b/content/browser/renderer_host/input/touch_emulator_unittest.cc
@@ -96,7 +96,7 @@ class TouchEmulatorTest : public testing::Test,
for (size_t i = 0; i < forwarded_events_.size(); ++i) {
if (i != 0)
result += " ";
- result += ui::WebInputEventTraits::GetName(forwarded_events_[i]);
+ result += WebInputEvent::GetName(forwarded_events_[i]);
}
forwarded_events_.clear();
return result;

Powered by Google App Engine
This is Rietveld 408576698