| Index: chrome/common/extensions/extension.cc
|
| diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc
|
| index a94120886b5fbad43f2b727f252e992e71e5fd04..42407b8eb48cbf8c20d7f7881d913771beb73f78 100644
|
| --- a/chrome/common/extensions/extension.cc
|
| +++ b/chrome/common/extensions/extension.cc
|
| @@ -437,8 +437,8 @@ bool Extension::ParsePermissions(const char* key,
|
| if (manifest_->HasKey(key)) {
|
| const ListValue* permissions = NULL;
|
| if (!manifest_->GetList(key, &permissions)) {
|
| - *error = ErrorUtils::FormatErrorMessageUTF16(
|
| - errors::kInvalidPermissions, "");
|
| + *error = ErrorUtils::FormatErrorMessageUTF16(errors::kInvalidPermissions,
|
| + std::string());
|
| return false;
|
| }
|
|
|
|
|