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

Unified Diff: Source/web/tests/ChromeClientImplTest.cpp

Issue 14107015: Rename OS(DARWIN) to OS(MACOSX). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 3 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 | « Source/web/WebViewImpl.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/ChromeClientImplTest.cpp
diff --git a/Source/web/tests/ChromeClientImplTest.cpp b/Source/web/tests/ChromeClientImplTest.cpp
index d339883633b4585ead993316d489ccff2f4ffdf0..4d62f9ed570a892ea0d7744c1e7bb0449a277671 100644
--- a/Source/web/tests/ChromeClientImplTest.cpp
+++ b/Source/web/tests/ChromeClientImplTest.cpp
@@ -162,7 +162,7 @@ TEST_F(GetNavigationPolicyTest, ShiftLeftClickPopup)
TEST_F(GetNavigationPolicyTest, ControlOrMetaLeftClick)
{
-#if OS(DARWIN)
+#if OS(MACOSX)
int modifiers = WebInputEvent::MetaKey;
#else
int modifiers = WebInputEvent::ControlKey;
@@ -175,7 +175,7 @@ TEST_F(GetNavigationPolicyTest, ControlOrMetaLeftClick)
TEST_F(GetNavigationPolicyTest, ControlOrMetaLeftClickPopup)
{
-#if OS(DARWIN)
+#if OS(MACOSX)
int modifiers = WebInputEvent::MetaKey;
#else
int modifiers = WebInputEvent::ControlKey;
@@ -188,7 +188,7 @@ TEST_F(GetNavigationPolicyTest, ControlOrMetaLeftClickPopup)
TEST_F(GetNavigationPolicyTest, ControlOrMetaAndShiftLeftClick)
{
-#if OS(DARWIN)
+#if OS(MACOSX)
int modifiers = WebInputEvent::MetaKey;
#else
int modifiers = WebInputEvent::ControlKey;
@@ -202,7 +202,7 @@ TEST_F(GetNavigationPolicyTest, ControlOrMetaAndShiftLeftClick)
TEST_F(GetNavigationPolicyTest, ControlOrMetaAndShiftLeftClickPopup)
{
-#if OS(DARWIN)
+#if OS(MACOSX)
int modifiers = WebInputEvent::MetaKey;
#else
int modifiers = WebInputEvent::ControlKey;
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698