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

Unified Diff: chrome/browser/profiles/profile_keyed_service_factory.cc

Issue 7285014: [wip] Profile: Sketch of a creation system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Y U NO LIEK CONST, MAC? Created 9 years, 6 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/profile_keyed_service_factory.cc
diff --git a/chrome/browser/profiles/profile_keyed_service_factory.cc b/chrome/browser/profiles/profile_keyed_service_factory.cc
index e13fbf5b7919bbee37c73a86810c4c8727690b61..7ded5bf3e0ba41c9eedede9e4c0e5309966a935d 100644
--- a/chrome/browser/profiles/profile_keyed_service_factory.cc
+++ b/chrome/browser/profiles/profile_keyed_service_factory.cc
@@ -107,6 +107,14 @@ bool ProfileKeyedServiceFactory::ServiceHasOwnInstanceInIncognito() {
return false;
}
+bool ProfileKeyedServiceFactory::ServiceIsCreatedWithProfile() {
+ return false;
+}
+
+bool ProfileKeyedServiceFactory::ServiceIsNULLWhileTesting() {
+ return false;
+}
+
void ProfileKeyedServiceFactory::ProfileShutdown(Profile* profile) {
std::map<Profile*, ProfileKeyedService*>::iterator it =
mapping_.find(profile);

Powered by Google App Engine
This is Rietveld 408576698