| Index: Source/core/events/KeyboardEvent.h
|
| diff --git a/Source/core/events/KeyboardEvent.h b/Source/core/events/KeyboardEvent.h
|
| index a99c05f2a7e61ebbd6ac629d222c0a4dd0d42fd8..e7f2b3117f966f7102e7f084601ceab7804144f1 100644
|
| --- a/Source/core/events/KeyboardEvent.h
|
| +++ b/Source/core/events/KeyboardEvent.h
|
| @@ -36,6 +36,7 @@ struct KeyboardEventInit : public UIEventInit {
|
| KeyboardEventInit();
|
|
|
| String keyIdentifier;
|
| + String code;
|
| unsigned location;
|
| bool ctrlKey;
|
| bool altKey;
|
| @@ -70,20 +71,22 @@ public:
|
| }
|
|
|
| static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
|
| - const String& keyIdentifier, unsigned location,
|
| + const String& keyIdentifier, const String& code, unsigned location,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| {
|
| - return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
|
| + return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, code, location,
|
| ctrlKey, altKey, shiftKey, metaKey));
|
| }
|
|
|
| virtual ~KeyboardEvent();
|
|
|
| void initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
|
| - const String& keyIdentifier, unsigned location,
|
| + const String& keyIdentifier, const String& code, unsigned location,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
|
|
| const String& keyIdentifier() const { return m_keyIdentifier; }
|
| + const String& code() { return m_code; };
|
| +
|
| unsigned location() const { return m_location; }
|
|
|
| bool getModifierState(const String& keyIdentifier) const;
|
| @@ -105,11 +108,12 @@ private:
|
| KeyboardEvent(const PlatformKeyboardEvent&, AbstractView*);
|
| KeyboardEvent(const AtomicString&, const KeyboardEventInit&);
|
| KeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView*,
|
| - const String& keyIdentifier, unsigned location,
|
| + const String& keyIdentifier, const String& code, unsigned location,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
|
|
| OwnPtr<PlatformKeyboardEvent> m_keyEvent;
|
| String m_keyIdentifier;
|
| + String m_code;
|
| unsigned m_location;
|
| bool m_isAutoRepeat : 1;
|
| };
|
|
|