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

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

Issue 5019005: Add "open as window" menu item to NTP app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 10 years, 1 month 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/extensions_service.cc
diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc
index e8f39aab057b247616124f840a47828bca34fd8d..13fee4606658dceed8d00fa90817d5ddb1b633e3 100644
--- a/chrome/browser/extensions/extensions_service.cc
+++ b/chrome/browser/extensions/extensions_service.cc
@@ -538,7 +538,7 @@ ExtensionsService::ExtensionsService(Profile* profile,
install_directory_(install_directory),
extensions_enabled_(true),
show_extensions_prompts_(true),
- ready_(false),
+ init_done_(false),
ALLOW_THIS_IN_INITIALIZER_LIST(toolbar_model_(this)),
default_apps_(profile->GetPrefs()),
event_routers_initialized_(false) {
@@ -608,7 +608,7 @@ void ExtensionsService::InitEventRouters() {
void ExtensionsService::Init() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- DCHECK(!ready_);
+ DCHECK(!init_done_); // Can't redo init.
DCHECK_EQ(extensions_.size(), 0u);
// Hack: we need to ensure the ResourceDispatcherHost is ready before we load
@@ -623,6 +623,8 @@ void ExtensionsService::Init() {
// TODO(erikkay) this should probably be deferred as well.
GarbageCollectExtensions();
+
+ init_done_ = true;
}
void ExtensionsService::InstallExtension(const FilePath& extension_path) {
@@ -1473,7 +1475,6 @@ void ExtensionsService::GarbageCollectExtensions() {
}
void ExtensionsService::OnLoadedInstalledExtensions() {
- ready_ = true;
if (updater_.get()) {
updater_->Start();
}

Powered by Google App Engine
This is Rietveld 408576698