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

Unified Diff: Source/wtf/ProcessID.h

Issue 23672027: Rename OS(WINDOWS) to OS(WIN) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/wtf/PageAllocator.cpp ('k') | Source/wtf/TCSystemAlloc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/ProcessID.h
diff --git a/Source/wtf/ProcessID.h b/Source/wtf/ProcessID.h
index ee1c130c89c4975fee09323739be999532747790..e9bad1362f85101c9b702a78b726779d00280d6f 100644
--- a/Source/wtf/ProcessID.h
+++ b/Source/wtf/ProcessID.h
@@ -30,7 +30,7 @@
#include <unistd.h>
#endif
-#if OS(WINDOWS)
+#if OS(WIN)
#include <windows.h>
#endif
@@ -38,7 +38,7 @@ namespace WTF {
inline int getCurrentProcessID()
{
-#if OS(WINDOWS)
+#if OS(WIN)
return GetCurrentProcessId();
#else
return getpid();
« no previous file with comments | « Source/wtf/PageAllocator.cpp ('k') | Source/wtf/TCSystemAlloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698