| Index: extensions/common/manifest_handlers/csp_info.cc
|
| diff --git a/extensions/common/manifest_handlers/csp_info.cc b/extensions/common/manifest_handlers/csp_info.cc
|
| index 842a640d9ddd744b7c5ba1b635dec1c416c4277a..2fd74fb76b272a096eae2e8f215861835955aeb6 100644
|
| --- a/extensions/common/manifest_handlers/csp_info.cc
|
| +++ b/extensions/common/manifest_handlers/csp_info.cc
|
| @@ -97,17 +97,17 @@ bool CSPHandler::Parse(Extension* extension, base::string16* error) {
|
|
|
| std::string content_security_policy;
|
| if (!extension->manifest()->GetString(key, &content_security_policy)) {
|
| - *error = ASCIIToUTF16(errors::kInvalidContentSecurityPolicy);
|
| + *error = base::ASCIIToUTF16(errors::kInvalidContentSecurityPolicy);
|
| return false;
|
| }
|
| if (!ContentSecurityPolicyIsLegal(content_security_policy)) {
|
| - *error = ASCIIToUTF16(errors::kInvalidContentSecurityPolicy);
|
| + *error = base::ASCIIToUTF16(errors::kInvalidContentSecurityPolicy);
|
| return false;
|
| }
|
| if (extension->manifest_version() >= 2 &&
|
| !ContentSecurityPolicyIsSecure(content_security_policy,
|
| extension->GetType())) {
|
| - *error = ASCIIToUTF16(errors::kInsecureContentSecurityPolicy);
|
| + *error = base::ASCIIToUTF16(errors::kInsecureContentSecurityPolicy);
|
| return false;
|
| }
|
|
|
|
|