| Index: Source/core/page/DragController.cpp
|
| diff --git a/Source/core/page/DragController.cpp b/Source/core/page/DragController.cpp
|
| index 03ceaa4f6126563ce795fab42d645b9ca2100833..166fc1c572526ccf26693f50ecb71c607d00ce85 100644
|
| --- a/Source/core/page/DragController.cpp
|
| +++ b/Source/core/page/DragController.cpp
|
| @@ -78,7 +78,7 @@
|
| #include "wtf/PassOwnPtr.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| -#if OS(WINDOWS)
|
| +#if OS(WIN)
|
| #include <windows.h>
|
| #endif
|
|
|
| @@ -916,7 +916,7 @@ DragOperation DragController::dragOperation(DragData* dragData)
|
| bool DragController::isCopyKeyDown(DragData*)
|
| {
|
| // FIXME: This should not be OS specific. Delegate to the embedder instead.
|
| -#if OS(WINDOWS)
|
| +#if OS(WIN)
|
| return ::GetAsyncKeyState(VK_CONTROL);
|
| #else
|
| return false;
|
|
|