| Index: content/common/input/web_input_event_traits.cc
|
| diff --git a/content/common/input/web_input_event_traits.cc b/content/common/input/web_input_event_traits.cc
|
| index 9ec16179569c01d54ff7f00bd63d4924681c11cb..fd0e1b5bb78a94297b242718c12441e583c0e04e 100644
|
| --- a/content/common/input/web_input_event_traits.cc
|
| +++ b/content/common/input/web_input_event_traits.cc
|
| @@ -23,13 +23,12 @@ namespace {
|
| void ApppendEventDetails(const WebKeyboardEvent& event, std::string* result) {
|
| StringAppendF(result,
|
| "{\n WinCode: %d\n NativeCode: %d\n IsSystem: %d\n"
|
| - " Text: %s\n UnmodifiedText: %s\n KeyIdentifier: %s\n}",
|
| + " Text: %s\n UnmodifiedText: %s\n}",
|
| event.windowsKeyCode,
|
| event.nativeKeyCode,
|
| event.isSystemKey,
|
| reinterpret_cast<const char*>(event.text),
|
| - reinterpret_cast<const char*>(event.unmodifiedText),
|
| - reinterpret_cast<const char*>(event.keyIdentifier));
|
| + reinterpret_cast<const char*>(event.unmodifiedText));
|
| }
|
|
|
| void ApppendEventDetails(const WebMouseEvent& event, std::string* result) {
|
|
|