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

Unified Diff: remoting/protocol/fake_session.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/protocol/connection_tester.h ('k') | sync/engine/sync_scheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_session.h
diff --git a/remoting/protocol/fake_session.h b/remoting/protocol/fake_session.h
index 1d4519f9416365ce01d0becdd1912ebef928b6d0..ec4031dace5f934afd57de5dfd320c734e9e4db1 100644
--- a/remoting/protocol/fake_session.h
+++ b/remoting/protocol/fake_session.h
@@ -17,7 +17,9 @@
#include "remoting/protocol/channel_factory.h"
#include "remoting/protocol/session.h"
+namespace base {
class MessageLoop;
+}
namespace remoting {
namespace protocol {
@@ -100,7 +102,7 @@ class FakeSocket : public net::StreamSocket {
net::BoundNetLog net_log_;
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
base::WeakPtrFactory<FakeSocket> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(FakeSocket);
@@ -140,7 +142,7 @@ class FakeUdpSocket : public net::Socket {
std::vector<std::string> input_packets_;
int input_pos_;
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
DISALLOW_COPY_AND_ASSIGN(FakeUdpSocket);
};
@@ -197,7 +199,7 @@ class FakeSession : public Session,
EventHandler* event_handler_;
scoped_ptr<const CandidateSessionConfig> candidate_config_;
SessionConfig config_;
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
bool async_creation_;
« no previous file with comments | « remoting/protocol/connection_tester.h ('k') | sync/engine/sync_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698