summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-20 20:37:55 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-20 20:37:55 +0000
commit577e30290cc9389a96303b8dd7543459dc50c236 (patch)
tree2e42f98ec542be304136662603754f3be2aff115
parentdd5bc57be749bcca0c6a6896bd2e5474162f8f13 (diff)
downloadchromium_src-577e30290cc9389a96303b8dd7543459dc50c236.zip
chromium_src-577e30290cc9389a96303b8dd7543459dc50c236.tar.gz
chromium_src-577e30290cc9389a96303b8dd7543459dc50c236.tar.bz2
Set back StoreRef as non-thread-safe. (Second try)
BUG=5689 Review URL: http://codereview.chromium.org/18367 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8307 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/revocable_store.h2
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) { }