| Index: chrome/common/extensions/csp_handler.cc
|
| diff --git a/chrome/common/extensions/csp_handler.cc b/chrome/common/extensions/csp_handler.cc
|
| index 5437f75337148f5422cafa88c03bca42e10a5ddb..3b8512f43ec96a78c7e79d2fd11e30505a12008b 100644
|
| --- a/chrome/common/extensions/csp_handler.cc
|
| +++ b/chrome/common/extensions/csp_handler.cc
|
| @@ -9,16 +9,16 @@
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "chrome/common/extensions/csp_validator.h"
|
| -#include "chrome/common/extensions/extension_manifest_constants.h"
|
| #include "chrome/common/extensions/manifest_handlers/sandboxed_page_info.h"
|
| +#include "extensions/common/manifest_constants.h"
|
|
|
| -namespace keys = extensions::manifest_keys;
|
| -namespace errors = extension_manifest_errors;
|
| +namespace extensions {
|
|
|
| -using extensions::csp_validator::ContentSecurityPolicyIsLegal;
|
| -using extensions::csp_validator::ContentSecurityPolicyIsSecure;
|
| +namespace keys = manifest_keys;
|
| +namespace errors = manifest_errors;
|
|
|
| -namespace extensions {
|
| +using csp_validator::ContentSecurityPolicyIsLegal;
|
| +using csp_validator::ContentSecurityPolicyIsSecure;
|
|
|
| namespace {
|
|
|
|
|