summaryrefslogtreecommitdiffstats
path: root/WebCore/page/win/EventHandlerWin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/win/EventHandlerWin.cpp')
-rw-r--r--WebCore/page/win/EventHandlerWin.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/WebCore/page/win/EventHandlerWin.cpp b/WebCore/page/win/EventHandlerWin.cpp
index bfd2b02..88bc373 100644
--- a/WebCore/page/win/EventHandlerWin.cpp
+++ b/WebCore/page/win/EventHandlerWin.cpp
@@ -45,8 +45,6 @@
namespace WebCore {
-unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::AltKey;
-
const double EventHandler::TextDragDelay = 0.0;
bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
@@ -108,4 +106,9 @@ bool EventHandler::passWidgetMouseDownEventToWidget(const MouseEventWithHitTestR
return false;
}
+unsigned EventHandler::accessKeyModifiers()
+{
+ return PlatformKeyboardEvent::AltKey;
+}
+
}