summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/webstore_standalone_installer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/webstore_standalone_installer.cc')
-rw-r--r--chrome/browser/extensions/webstore_standalone_installer.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/chrome/browser/extensions/webstore_standalone_installer.cc b/chrome/browser/extensions/webstore_standalone_installer.cc
index 7df550f..cadce50 100644
--- a/chrome/browser/extensions/webstore_standalone_installer.cc
+++ b/chrome/browser/extensions/webstore_standalone_installer.cc
@@ -80,7 +80,7 @@ void WebstoreStandaloneInstaller::OnWebstoreRequestFailure() {
void WebstoreStandaloneInstaller::OnWebstoreResponseParseSuccess(
DictionaryValue* webstore_data) {
if (!CheckRequestorAlive()) {
- CompleteInstall(std::string());
+ CompleteInstall("");
return;
}
@@ -141,13 +141,13 @@ void WebstoreStandaloneInstaller::OnWebstoreResponseParseSuccess(
// Assume ownership of webstore_data.
webstore_data_.reset(webstore_data);
- scoped_refptr<WebstoreInstallHelper> helper =
- new WebstoreInstallHelper(this,
- id_,
- manifest,
- std::string(), // We don't have any icon data.
- icon_url,
- profile_->GetRequestContext());
+ scoped_refptr<WebstoreInstallHelper> helper = new WebstoreInstallHelper(
+ this,
+ id_,
+ manifest,
+ "", // We don't have any icon data.
+ icon_url,
+ profile_->GetRequestContext());
// The helper will call us back via OnWebstoreParseSucces or
// OnWebstoreParseFailure.
helper->Start();
@@ -165,7 +165,7 @@ void WebstoreStandaloneInstaller::OnWebstoreParseSuccess(
CHECK_EQ(id_, id);
if (!CheckRequestorAlive()) {
- CompleteInstall(std::string());
+ CompleteInstall("");
return;
}
@@ -190,7 +190,7 @@ void WebstoreStandaloneInstaller::OnWebstoreParseFailure(
void WebstoreStandaloneInstaller::InstallUIProceed() {
if (!CheckRequestorAlive()) {
- CompleteInstall(std::string());
+ CompleteInstall("");
return;
}
@@ -219,7 +219,7 @@ void WebstoreStandaloneInstaller::InstallUIAbort(bool user_initiated) {
void WebstoreStandaloneInstaller::OnExtensionInstallSuccess(
const std::string& id) {
CHECK_EQ(id_, id);
- CompleteInstall(std::string());
+ CompleteInstall("");
}
void WebstoreStandaloneInstaller::OnExtensionInstallFailure(