From c91775096768e4a75b23a910ddc1e33d9412a3be Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Sat, 1 Jan 2011 04:48:49 +0000 Subject: Move non_thread_safe from base to base/threading and into the base namespace. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/6005010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70351 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_channel_win.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipc/ipc_channel_win.cc') 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; -- cgit v1.1