| Index: Source/core/events/KeyboardEvent.cpp
|
| diff --git a/Source/core/events/KeyboardEvent.cpp b/Source/core/events/KeyboardEvent.cpp
|
| index dbf12a9f88cb4eb07ed149269e520e66474b7be2..f55295d0fad1d969af99a231a2b3945d502740ab 100644
|
| --- a/Source/core/events/KeyboardEvent.cpp
|
| +++ b/Source/core/events/KeyboardEvent.cpp
|
| @@ -96,6 +96,7 @@ KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* vie
|
| true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
|
| , m_keyEvent(adoptPtr(new PlatformKeyboardEvent(key)))
|
| , m_keyIdentifier(key.keyIdentifier())
|
| + , m_code(key.code())
|
| , m_location(keyLocationCode(key))
|
| , m_isAutoRepeat(key.isAutoRepeat())
|
| {
|
| @@ -111,10 +112,10 @@ KeyboardEvent::KeyboardEvent(const AtomicString& eventType, const KeyboardEventI
|
| }
|
|
|
| KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view,
|
| - const String &keyIdentifier, unsigned location,
|
| - bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| + const String& keyIdentifier, const String& code, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
|
| , m_keyIdentifier(keyIdentifier)
|
| + , m_code(code)
|
| , m_location(location)
|
| , m_isAutoRepeat(false)
|
| {
|
| @@ -125,8 +126,7 @@ KeyboardEvent::~KeyboardEvent()
|
| }
|
|
|
| void KeyboardEvent::initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
|
| - const String &keyIdentifier, unsigned location,
|
| - bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| + const String& keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| {
|
| if (dispatched())
|
| return;
|
|
|