Chromium Code Reviews| 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(); |