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

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

Issue 1391843006: Embed keyboard shortcut bit in WebKeyboardEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mac test compile Created 5 years, 2 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
« no previous file with comments | « content/common/input/input_event.h ('k') | content/common/input/input_param_traits_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/input/input_event.cc
diff --git a/content/common/input/input_event.cc b/content/common/input/input_event.cc
index 93e96911accaebc65d5f27fd0cc482b141c94557..ab20010ff3d1dc5a7682b3ee0c3d4897e0cf0dc1 100644
--- a/content/common/input/input_event.cc
+++ b/content/common/input/input_event.cc
@@ -8,14 +8,12 @@
namespace content {
-InputEvent::InputEvent() : is_keyboard_shortcut(false) {}
+InputEvent::InputEvent() {}
InputEvent::InputEvent(const blink::WebInputEvent& web_event,
- const ui::LatencyInfo& latency_info,
- bool is_keyboard_shortcut)
- : web_event(WebInputEventTraits::Clone(web_event)),
- latency_info(latency_info),
- is_keyboard_shortcut(is_keyboard_shortcut) {}
+ const ui::LatencyInfo& latency_info)
+ : web_event(WebInputEventTraits::Clone(web_event)),
+ latency_info(latency_info) {}
InputEvent::~InputEvent() {}
« no previous file with comments | « content/common/input/input_event.h ('k') | content/common/input/input_param_traits_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698