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

Unified Diff: chrome/browser/extensions/extension_system_factory.cc

Issue 12330073: Disable ProfileKeyedServices on import process by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to ToT Created 7 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/extensions/extension_system_factory.cc
diff --git a/chrome/browser/extensions/extension_system_factory.cc b/chrome/browser/extensions/extension_system_factory.cc
index 19b86964074071985e333ddebbf77f7662b4a424..8dd116eb4370f56630fb5095e9f8b5c5f28ea71d 100644
--- a/chrome/browser/extensions/extension_system_factory.cc
+++ b/chrome/browser/extensions/extension_system_factory.cc
@@ -50,6 +50,10 @@ bool ExtensionSystemSharedFactory::ServiceRedirectedInIncognito() const {
return true;
}
+bool ExtensionSystemSharedFactory::ServiceIsNULLOnImportProcess() const {
+ return false;
+}
+
// ExtensionSystemFactory
// static
@@ -82,6 +86,10 @@ bool ExtensionSystemFactory::ServiceHasOwnInstanceInIncognito() const {
return true;
}
+bool ExtensionSystemFactory::ServiceIsNULLOnImportProcess() const {
+ return false;
Elliot Glaysher 2013/03/07 20:45:48 The extension system depends on a lot of stuff, an
+}
+
bool ExtensionSystemFactory::ServiceIsCreatedWithProfile() const {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698