diff options
Diffstat (limited to 'ipc/ipc_channel_win.h')
-rw-r--r-- | ipc/ipc_channel_win.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h index 82b70db..eb38777 100644 --- a/ipc/ipc_channel_win.h +++ b/ipc/ipc_channel_win.h @@ -14,7 +14,9 @@ #include "base/message_loop.h" #include "base/scoped_ptr.h" +namespace base { class NonThreadSafe; +} namespace IPC { @@ -78,7 +80,7 @@ class Channel::ChannelImpl : public MessageLoopForIO::IOHandler { ScopedRunnableMethodFactory<ChannelImpl> factory_; - scoped_ptr<NonThreadSafe> thread_check_; + scoped_ptr<base::NonThreadSafe> thread_check_; DISALLOW_COPY_AND_ASSIGN(ChannelImpl); }; |