summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom/KeyboardEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/KeyboardEvent.h')
-rw-r--r--Source/WebCore/dom/KeyboardEvent.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebCore/dom/KeyboardEvent.h b/Source/WebCore/dom/KeyboardEvent.h
index eeaef80..ebdb9c8 100644
--- a/Source/WebCore/dom/KeyboardEvent.h
+++ b/Source/WebCore/dom/KeyboardEvent.h
@@ -29,6 +29,8 @@
namespace WebCore {
+ class EventDispatcher;
+ class Node;
class PlatformKeyboardEvent;
#if PLATFORM(MAC)
@@ -99,6 +101,7 @@ namespace WebCore {
KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
const String& keyIdentifier, unsigned keyLocation,
bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
+ virtual bool dispatch(EventDispatcher*);
OwnPtr<PlatformKeyboardEvent> m_keyEvent;
String m_keyIdentifier;