From 577e30290cc9389a96303b8dd7543459dc50c236 Mon Sep 17 00:00:00 2001 From: "maruel@chromium.org" Date: Tue, 20 Jan 2009 20:37:55 +0000 Subject: 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 --- base/revocable_store.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base') 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 { + class StoreRef : public base::RefCounted { public: StoreRef(RevocableStore* store) : store_(store) { } -- cgit v1.1