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

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

Issue 10185008: Taking over issue 10006037: Moved WebDataService to ProfileKeyedService (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
===================================================================
--- chrome/browser/signin/token_service_factory.cc (revision 136877)
+++ chrome/browser/signin/token_service_factory.cc (working copy)
@@ -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