| Index: Source/core/inspector/InspectorInputAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorInputAgent.cpp b/Source/core/inspector/InspectorInputAgent.cpp
|
| index 1240526413fba786b10ef31d79ab7cdfa6117dc2..2b9beeae56fd7e3daed16a8eea9e22fbcad7e19b 100644
|
| --- a/Source/core/inspector/InspectorInputAgent.cpp
|
| +++ b/Source/core/inspector/InspectorInputAgent.cpp
|
| @@ -100,7 +100,7 @@ InspectorInputAgent::~InspectorInputAgent()
|
| {
|
| }
|
|
|
| -void InspectorInputAgent::dispatchKeyEvent(ErrorString* error, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const String* code, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey)
|
| +void InspectorInputAgent::dispatchKeyEvent(ErrorString* error, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const String* code, const String* key, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey)
|
| {
|
| PlatformEvent::Type convertedType;
|
| if (type == "keyDown")
|
| @@ -122,6 +122,7 @@ void InspectorInputAgent::dispatchKeyEvent(ErrorString* error, const String& typ
|
| unmodifiedText ? *unmodifiedText : "",
|
| keyIdentifier ? *keyIdentifier : "",
|
| code ? *code : "",
|
| + key ? *key : "",
|
| windowsVirtualKeyCode ? *windowsVirtualKeyCode : 0,
|
| nativeVirtualKeyCode ? *nativeVirtualKeyCode : 0,
|
| asBool(autoRepeat),
|
|
|