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

Unified Diff: ui/ozone/platform/caca/caca_event_factory.cc

Issue 422533003: ozone: caca: Fix key event constructor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/caca/caca_event_factory.cc
diff --git a/ui/ozone/platform/caca/caca_event_factory.cc b/ui/ozone/platform/caca/caca_event_factory.cc
index dbb0ad38dbd3e1ef675545c0dc4328dfd577de8d..bdcc2e2d9640bed66a74cb18eec9021b564d8e0f 100644
--- a/ui/ozone/platform/caca/caca_event_factory.cc
+++ b/ui/ozone/platform/caca/caca_event_factory.cc
@@ -191,7 +191,7 @@ void CacaEventFactory::OnInputEvent(caca_event_t* event, CacaWindow* window) {
modifier_flags_ &= ~ModifierFromKey(*event);
ui::KeyEvent key_event(
- type, GetKeyboardCode(*event), modifier_flags_, false);
+ type, GetKeyboardCode(*event), modifier_flags_);
window->OnCacaEvent(&key_event);
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698