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

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

Issue 381283002: Refactor code that defers extension background page loading (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: larger DeferLoadingBackgroundHosts Created 6 years, 5 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_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index f17b67b981e42548028cce69dd871dd9fdc1b444..9d9a048d15fecc8345c2fcbfd4e245f9e69c7cb5 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -283,6 +283,7 @@ ExtensionService::ExtensionService(Profile* profile,
installs_delayed_for_gc_(false),
is_first_run_(false),
shared_module_service_(new extensions::SharedModuleService(profile_)) {
+ LOG(ERROR) << "JAMES new ExtensionService";
CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
// Figure out if extension installation should be enabled.
@@ -1326,6 +1327,7 @@ void ExtensionService::ReloadExtensionsForTest() {
}
void ExtensionService::SetReadyAndNotifyListeners() {
+ LOG(ERROR) << "JAMES send extensions_ready";
ready_->Signal();
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_EXTENSIONS_READY,

Powered by Google App Engine
This is Rietveld 408576698