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

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

Issue 931993002: Make image_decoder a Leaky LazyInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get rid of IDMap Created 5 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/bundle_installer.cc
diff --git a/chrome/browser/extensions/bundle_installer.cc b/chrome/browser/extensions/bundle_installer.cc
index b29fb5315819e8695a4b25dc6c20b56d090dcd76..438bc276eae5b6c2e756e247bf5c5d4848fb1305 100644
--- a/chrome/browser/extensions/bundle_installer.cc
+++ b/chrome/browser/extensions/bundle_installer.cc
@@ -220,7 +220,7 @@ void BundleInstaller::ParseManifests() {
for (ItemMap::iterator i = items_.begin(); i != items_.end(); ++i) {
scoped_refptr<WebstoreInstallHelper> helper = new WebstoreInstallHelper(
- this, i->first, i->second.manifest, std::string(), GURL(), NULL);
+ this, i->first, i->second.manifest, GURL(), NULL);
dcheng 2015/03/23 11:52:09 Since we're changing this line anyway, mind updati
Theresa 2015/03/23 17:33:09 Done.
helper->Start();
}
}

Powered by Google App Engine
This is Rietveld 408576698