summaryrefslogtreecommitdiffstats
path: root/jingle
diff options
context:
space:
mode:
Diffstat (limited to 'jingle')
-rw-r--r--jingle/glue/channel_socket_adapter.h4
-rw-r--r--jingle/glue/fake_socket_factory.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/jingle/glue/channel_socket_adapter.h b/jingle/glue/channel_socket_adapter.h
index b5ed635..baf4d4c 100644
--- a/jingle/glue/channel_socket_adapter.h
+++ b/jingle/glue/channel_socket_adapter.h
@@ -11,7 +11,9 @@
#include "third_party/libjingle/source/talk/base/socketaddress.h"
#include "third_party/libjingle/source/talk/base/sigslot.h"
+namespace base {
class MessageLoop;
+}
namespace cricket {
class TransportChannel;
@@ -56,7 +58,7 @@ class TransportChannelSocketAdapter : public net::Socket,
void OnWritableState(cricket::TransportChannel* channel);
void OnChannelDestroyed(cricket::TransportChannel* channel);
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
cricket::TransportChannel* channel_;
diff --git a/jingle/glue/fake_socket_factory.h b/jingle/glue/fake_socket_factory.h
index 4e4fa40..6cbfb75 100644
--- a/jingle/glue/fake_socket_factory.h
+++ b/jingle/glue/fake_socket_factory.h
@@ -16,7 +16,9 @@
#include "third_party/libjingle/source/talk/base/asyncpacketsocket.h"
#include "third_party/libjingle/source/talk/base/packetsocketfactory.h"
+namespace base {
class MessageLoop;
+}
namespace jingle_glue {
@@ -82,7 +84,7 @@ class FakeSocketManager : public base::RefCountedThreadSafe<FakeSocketManager> {
const net::IPEndPoint& to,
const std::vector<char>& data);
- MessageLoop* message_loop_;
+ base::MessageLoop* message_loop_;
std::map<net::IPEndPoint, FakeUDPPacketSocket*> endpoints_;
DISALLOW_COPY_AND_ASSIGN(FakeSocketManager);