Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Unified Diff: Source/core/events/KeyboardEvent.h

Issue 663523002: Adding support for DOM3 KeyboardEvents Code in KeyboardEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to use domCode instead of native domCode Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698