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

Unified Diff: remoting/protocol/input_sender.h

Issue 7633009: Use MessageLoopProxy for network message loop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 4 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 | « remoting/protocol/host_message_dispatcher.h ('k') | remoting/protocol/input_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/input_sender.h
diff --git a/remoting/protocol/input_sender.h b/remoting/protocol/input_sender.h
index 5abcb331bb5de446af1a1ab12a0b3c375125a7fa..464237f41713f16a3e41eb0654f3166e7b5fa406 100644
--- a/remoting/protocol/input_sender.h
+++ b/remoting/protocol/input_sender.h
@@ -19,6 +19,10 @@
class Task;
+namespace base {
+class MessageLoopProxy;
+} // namespace base
+
namespace net {
class Socket;
} // namespace net
@@ -34,7 +38,8 @@ class BufferedSocketWriter;
class InputSender : public InputStub {
public:
// Create a stub using a socket.
- explicit InputSender(net::Socket* socket);
+ explicit InputSender(base::MessageLoopProxy* message_loop,
+ net::Socket* socket);
virtual ~InputSender();
// InputStub implementation.
« no previous file with comments | « remoting/protocol/host_message_dispatcher.h ('k') | remoting/protocol/input_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698