diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 17:30:01 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 17:30:01 +0000 |
commit | 2e1ef44951f2239bdc87c788ae6c6b781d2579c0 (patch) | |
tree | 3f83800add1ad593850a08f4210cdb9f2250e5a3 /base/revocable_store.h | |
parent | 58b049c17e1f5400735c12edfeb1e75a4dd2d92a (diff) | |
download | chromium_src-2e1ef44951f2239bdc87c788ae6c6b781d2579c0.zip chromium_src-2e1ef44951f2239bdc87c788ae6c6b781d2579c0.tar.gz chromium_src-2e1ef44951f2239bdc87c788ae6c6b781d2579c0.tar.bz2 |
Add thread safety checks but keep them disabled for now until I fix all the current places
where it triggers. Set back StoreRef as non-thread-safe.
BUG5689
Review URL: http://codereview.chromium.org/18272
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8180 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/revocable_store.h')
-rw-r--r-- | base/revocable_store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/revocable_store.h b/base/revocable_store.h index 2ee9705..60ada5c 100644 --- a/base/revocable_store.h +++ b/base/revocable_store.h @@ -17,7 +17,7 @@ class RevocableStore { // store wishes to revoke its items, it sets |store_| to null. Items are // permitted to release their reference to the |StoreRef| when they no longer // require the store. - class StoreRef : public base::RefCountedThreadSafe<StoreRef> { + class StoreRef : public base::RefCounted<StoreRef> { public: StoreRef(RevocableStore* store) : store_(store) { } |