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

Unified Diff: chrome/browser/signin/token_service_factory.cc

Issue 10006037: Moved WebDataService to ProfileKeyedService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compile Created 8 years, 8 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
« no previous file with comments | « chrome/browser/signin/token_service.cc ('k') | chrome/browser/signin/token_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/token_service_factory.cc
diff --git a/chrome/browser/signin/token_service_factory.cc b/chrome/browser/signin/token_service_factory.cc
index 54d6581e1a4f2ff36388c169620f34eb563cd291..bbf4b860cbd9d26970e539208aaf14173b82abe8 100644
--- a/chrome/browser/signin/token_service_factory.cc
+++ b/chrome/browser/signin/token_service_factory.cc
@@ -6,13 +6,12 @@
#include "chrome/browser/profiles/profile_dependency_manager.h"
#include "chrome/browser/signin/token_service.h"
+#include "chrome/browser/webdata/web_data_service_factory.h"
TokenServiceFactory::TokenServiceFactory()
: ProfileKeyedServiceFactory("TokenService",
ProfileDependencyManager::GetInstance()) {
- // TODO(rlp): TokenService depends on WebDataService - when this is
- // converted to the ProfileKeyedService framework, uncomment this dependency.
- // DependsOn(WebDataServiceFactory::GetInstance());
+ DependsOn(WebDataServiceFactory::GetInstance());
}
TokenServiceFactory::~TokenServiceFactory() {}
« no previous file with comments | « chrome/browser/signin/token_service.cc ('k') | chrome/browser/signin/token_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698