summaryrefslogtreecommitdiffstats
path: root/WebCore/page/chromium/DragControllerChromium.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/chromium/DragControllerChromium.cpp')
-rw-r--r--WebCore/page/chromium/DragControllerChromium.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/page/chromium/DragControllerChromium.cpp b/WebCore/page/chromium/DragControllerChromium.cpp
index 18688fd..7b0958d 100644
--- a/WebCore/page/chromium/DragControllerChromium.cpp
+++ b/WebCore/page/chromium/DragControllerChromium.cpp
@@ -31,7 +31,7 @@
#include "SelectionController.h"
#include <wtf/RefPtr.h>
-#if PLATFORM(WIN_OS)
+#if OS(WINDOWS)
#include <windows.h>
#endif
@@ -57,7 +57,7 @@ DragOperation DragController::dragOperation(DragData* dragData)
bool DragController::isCopyKeyDown()
{
// FIXME: This should not be OS specific. Delegate to the embedder instead.
-#if PLATFORM(WIN_OS)
+#if OS(WINDOWS)
return ::GetAsyncKeyState(VK_CONTROL);
#else
return false;