| Index: chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| index 0264c36c7b186849a20e59027dcc3f3298ae471d..8cb59aa2f9236fd802fc8fe2900387d638829f91 100644
|
| --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| @@ -295,7 +295,7 @@ bool BeginInstallWithManifestFunction::RunImpl() {
|
| void BeginInstallWithManifestFunction::SetResultCode(ResultCode code) {
|
| switch (code) {
|
| case ERROR_NONE:
|
| - SetResult(Value::CreateStringValue(""));
|
| + SetResult(Value::CreateStringValue(std::string()));
|
| break;
|
| case UNKNOWN_ERROR:
|
| SetResult(Value::CreateStringValue("unknown_error"));
|
| @@ -338,7 +338,7 @@ void BeginInstallWithManifestFunction::OnWebstoreParseSuccess(
|
| Extension::FROM_WEBSTORE,
|
| id,
|
| localized_name_,
|
| - "",
|
| + std::string(),
|
| &error);
|
|
|
| if (!dummy_extension_) {
|
|
|