summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_channel_win.cc')
-rw-r--r--ipc/ipc_channel_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index 823c2bb..ee58701 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -11,7 +11,7 @@
#include "base/auto_reset.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
-#include "base/non_thread_safe.h"
+#include "base/threading/non_thread_safe.h"
#include "base/utf_string_conversions.h"
#include "ipc/ipc_logging.h"
#include "ipc/ipc_message_utils.h"
@@ -250,7 +250,7 @@ bool Channel::ChannelImpl::Connect() {
DLOG_IF(WARNING, thread_check_.get()) << "Connect called more than once";
if (!thread_check_.get())
- thread_check_.reset(new NonThreadSafe());
+ thread_check_.reset(new base::NonThreadSafe());
if (pipe_ == INVALID_HANDLE_VALUE)
return false;