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

Unified Diff: remoting/protocol/connection_tester.h

Issue 13243003: Move MessageLoop to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/host/register_support_host_request.h ('k') | remoting/protocol/fake_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/connection_tester.h
diff --git a/remoting/protocol/connection_tester.h b/remoting/protocol/connection_tester.h
index f89cd7a124fa7e1f97035cfa1c7f00df68fff4d6..6c95c71f81fb36ae9a52abf5377463aa32dbab44 100644
--- a/remoting/protocol/connection_tester.h
+++ b/remoting/protocol/connection_tester.h
@@ -9,7 +9,9 @@
#include "base/memory/ref_counted.h"
+namespace base {
class MessageLoop;
+}
namespace net {
class DrainableIOBuffer;
@@ -48,7 +50,7 @@ class StreamConnectionTester {
void HandleReadResult(int result);
private:
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
net::StreamSocket* host_socket_;
net::StreamSocket* client_socket_;
int message_size_;
@@ -83,7 +85,7 @@ class DatagramConnectionTester {
void OnRead(int result);
void HandleReadResult(int result);
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
net::Socket* host_socket_;
net::Socket* client_socket_;
int message_size_;
« no previous file with comments | « remoting/host/register_support_host_request.h ('k') | remoting/protocol/fake_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698