summaryrefslogtreecommitdiffstats
path: root/webkit/port/platform/chromium/DragImageChromium.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/port/platform/chromium/DragImageChromium.cpp')
-rw-r--r--webkit/port/platform/chromium/DragImageChromium.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/port/platform/chromium/DragImageChromium.cpp b/webkit/port/platform/chromium/DragImageChromium.cpp
index 5ec6b97..e74a204 100644
--- a/webkit/port/platform/chromium/DragImageChromium.cpp
+++ b/webkit/port/platform/chromium/DragImageChromium.cpp
@@ -30,7 +30,7 @@
#include "GraphicsContext.h"
#include "Image.h"
-#if PLATFORM(WIN)
+#if PLATFORM(WIN_OS)
#include <windows.h>
#else
#include "NotImplemented.h"
@@ -43,7 +43,7 @@ IntSize dragImageSize(DragImageRef image)
// TODO(darin): DragImageRef should be changed to be a cross-platform
// container. However, it may still make sense for its contents to be
// platform-dependent.
-#if PLATFORM(WIN)
+#if PLATFORM(WIN_OS)
if (!image)
return IntSize();
BITMAP b;
@@ -56,7 +56,7 @@ IntSize dragImageSize(DragImageRef image)
void deleteDragImage(DragImageRef image)
{
-#if PLATFORM(WIN)
+#if PLATFORM(WIN_OS)
if (image)
::DeleteObject(image);
#else