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

Unified Diff: third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . Created 4 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
index 611297d56e216de946d57a25743daddb547fcfee..2ea1b7703c6df6f3f6f078c862d4f3d85bd16d1e 100644
--- a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
@@ -940,7 +940,7 @@ TEST(WebInputEventConversionTest, PlatformWheelEventBuilder)
EXPECT_EQ(5, platformWheelBuilder.position().y());
EXPECT_EQ(10, platformWheelBuilder.deltaX());
EXPECT_EQ(15, platformWheelBuilder.deltaY());
- EXPECT_EQ(PlatformEvent::CtrlKey, platformWheelBuilder.modifiers());
+ EXPECT_EQ(PlatformEvent::CtrlKey, platformWheelBuilder.getModifiers());
EXPECT_TRUE(platformWheelBuilder.hasPreciseScrollingDeltas());
EXPECT_TRUE(platformWheelBuilder.canScroll());
EXPECT_EQ(platformWheelBuilder.getRailsMode(), PlatformEvent::RailsModeHorizontal);
@@ -963,7 +963,7 @@ TEST(WebInputEventConversionTest, PlatformWheelEventBuilder)
EXPECT_EQ(0, platformWheelBuilder.position().y());
EXPECT_EQ(15, platformWheelBuilder.deltaX());
EXPECT_EQ(10, platformWheelBuilder.deltaY());
- EXPECT_EQ(PlatformEvent::ShiftKey, platformWheelBuilder.modifiers());
+ EXPECT_EQ(PlatformEvent::ShiftKey, platformWheelBuilder.getModifiers());
EXPECT_FALSE(platformWheelBuilder.hasPreciseScrollingDeltas());
EXPECT_FALSE(platformWheelBuilder.canScroll());
EXPECT_EQ(platformWheelBuilder.getRailsMode(), PlatformEvent::RailsModeFree);
@@ -986,7 +986,7 @@ TEST(WebInputEventConversionTest, PlatformWheelEventBuilder)
EXPECT_EQ(0, platformWheelBuilder.position().y());
EXPECT_EQ(15, platformWheelBuilder.deltaX());
EXPECT_EQ(10, platformWheelBuilder.deltaY());
- EXPECT_EQ(PlatformEvent::AltKey, platformWheelBuilder.modifiers());
+ EXPECT_EQ(PlatformEvent::AltKey, platformWheelBuilder.getModifiers());
EXPECT_TRUE(platformWheelBuilder.hasPreciseScrollingDeltas());
EXPECT_FALSE(platformWheelBuilder.canScroll());
EXPECT_EQ(platformWheelBuilder.getRailsMode(), PlatformEvent::RailsModeVertical);
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698