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

Unified Diff: content/renderer/render_widget.cc

Issue 8089002: Input event filtering and compositor thread setup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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/renderer/render_thread.cc ('k') | webkit/glue/webthread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_widget.cc
===================================================================
--- content/renderer/render_widget.cc (revision 104238)
+++ content/renderer/render_widget.cc (working copy)
@@ -466,9 +466,9 @@
if (!processed && is_keyboard_shortcut)
suppress_next_char_events_ = true;
- IPC::Message* response = new ViewHostMsg_HandleInputEvent_ACK(routing_id_);
- response->WriteInt(input_event->type);
- response->WriteBool(processed);
+ IPC::Message* response =
+ new ViewHostMsg_HandleInputEvent_ACK(routing_id_, input_event->type,
+ processed);
if ((input_event->type == WebInputEvent::MouseMove ||
input_event->type == WebInputEvent::MouseWheel ||
« no previous file with comments | « content/renderer/render_thread.cc ('k') | webkit/glue/webthread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698