diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-25 21:11:36 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-25 21:11:36 +0000 |
commit | 327e52b1a5e90c2af0b9c4e6ecb146d4510f7398 (patch) | |
tree | d8532f5934b28f7ef02e379cedb3d9397586cbc1 /ipc/ipc_channel_win.h | |
parent | 5f84a0ac03cbb9cab45e2b8fdd8c105c7fd69bbc (diff) | |
download | chromium_src-327e52b1a5e90c2af0b9c4e6ecb146d4510f7398.zip chromium_src-327e52b1a5e90c2af0b9c4e6ecb146d4510f7398.tar.gz chromium_src-327e52b1a5e90c2af0b9c4e6ecb146d4510f7398.tar.bz2 |
Use base::ThreadChecker as a member var, rather than base::NonThreadSafe
BUG=123295
TEST=existing
Review URL: https://chromiumcodereview.appspot.com/10663016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144011 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_win.h')
-rw-r--r-- | ipc/ipc_channel_win.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h index cb37f33..e8302fe 100644 --- a/ipc/ipc_channel_win.h +++ b/ipc/ipc_channel_win.h @@ -17,7 +17,7 @@ #include "ipc/ipc_channel_reader.h" namespace base { -class NonThreadSafe; +class ThreadChecker; } namespace IPC { @@ -95,7 +95,7 @@ class Channel::ChannelImpl : public internal::ChannelReader, base::WeakPtrFactory<ChannelImpl> weak_factory_; - scoped_ptr<base::NonThreadSafe> thread_check_; + scoped_ptr<base::ThreadChecker> thread_check_; DISALLOW_COPY_AND_ASSIGN(ChannelImpl); }; |