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_; |