Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(701)

Unified Diff: chrome/browser/profiles/refcounted_profile_keyed_service.h

Issue 9703038: Profiles: Really fix refcounted services. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Forgot to save a file. >_< Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/profiles/refcounted_profile_keyed_service.h
diff --git a/chrome/browser/profiles/refcounted_profile_keyed_service.h b/chrome/browser/profiles/refcounted_profile_keyed_service.h
index a55428468cc3ef58165d2620aead828c6ebfd916..0db4351f642d1fa661fd976d4e7d4f580cd6393d 100644
--- a/chrome/browser/profiles/refcounted_profile_keyed_service.h
+++ b/chrome/browser/profiles/refcounted_profile_keyed_service.h
@@ -6,7 +6,6 @@
#define CHROME_BROWSER_PROFILES_REFCOUNTED_PROFILE_KEYED_SERVICE_H_
#include "base/memory/ref_counted.h"
-#include "chrome/browser/profiles/profile_keyed_base.h"
#include "content/public/browser/browser_thread.h"
class RefcountedProfileKeyedService;
@@ -32,8 +31,7 @@ struct RefcountedProfileKeyedServiceTraits {
// content::DeleteOnThread<> directly because RefcountedProfileKeyedService
// must be one type that RefcountedProfileKeyedServiceFactory can use.
class RefcountedProfileKeyedService
- : public ProfileKeyedBase,
- public base::RefCountedThreadSafe<
+ : public base::RefCountedThreadSafe<
RefcountedProfileKeyedService,
impl::RefcountedProfileKeyedServiceTraits> {
public:

Powered by Google App Engine
This is Rietveld 408576698