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

Unified Diff: content/common/input/web_input_event_traits.cc

Issue 2120153003: Remove keyIdentifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_key_identifier_3a
Patch Set: Created 4 years, 5 months 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: 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) {

Powered by Google App Engine
This is Rietveld 408576698