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

Unified Diff: content/renderer/gpu/input_event_filter.h

Issue 10532162: Rename IPC Sender and Listener in ppapi, content/public, and content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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/renderer/gpu/input_event_filter.h
diff --git a/content/renderer/gpu/input_event_filter.h b/content/renderer/gpu/input_event_filter.h
index 63dad1dffbaed7a367438347e45597b62a0d3a60..887c3b10b5db14046b5dd170cdd47782fd413e18 100644
--- a/content/renderer/gpu/input_event_filter.h
+++ b/content/renderer/gpu/input_event_filter.h
@@ -40,7 +40,7 @@ class CONTENT_EXPORT InputEventFilter
// is true, then a ViewHostMsg_HandleInputEvent_ACK will not be generated,
// leaving that responsibility up to the eventual handler on the main thread.
//
- InputEventFilter(IPC::Channel::Listener* main_listener,
+ InputEventFilter(IPC::Listener* main_listener,
base::MessageLoopProxy* target_loop,
const Handler& handler);
@@ -72,11 +72,11 @@ class CONTENT_EXPORT InputEventFilter
bool processed);
scoped_refptr<base::MessageLoopProxy> main_loop_;
- IPC::Channel::Listener* main_listener_;
+ IPC::Listener* main_listener_;
// The sender_ only gets invoked on the thread corresponding to io_loop_.
scoped_refptr<base::MessageLoopProxy> io_loop_;
- IPC::Message::Sender* sender_;
+ IPC::Sender* sender_;
// The handler_ only gets Run on the thread corresponding to target_loop_.
scoped_refptr<base::MessageLoopProxy> target_loop_;

Powered by Google App Engine
This is Rietveld 408576698