| Index: chrome/renderer/content_settings_observer.cc
|
| diff --git a/chrome/renderer/content_settings_observer.cc b/chrome/renderer/content_settings_observer.cc
|
| index 2a5fbf506aefe0992d7805970a834b9279629dfb..22a0a80535ab470c563f6b00217c29e8862d4a04 100644
|
| --- a/chrome/renderer/content_settings_observer.cc
|
| +++ b/chrome/renderer/content_settings_observer.cc
|
| @@ -396,7 +396,7 @@ bool ContentSettingsObserver::allowWebComponents(WebFrame* frame,
|
| return true;
|
|
|
| WebSecurityOrigin origin = frame->document().securityOrigin();
|
| - if (EqualsASCII(origin.protocol(), chrome::kChromeUIScheme))
|
| + if (EqualsASCII(origin.protocol(), content::kChromeUIScheme))
|
| return true;
|
|
|
| if (const extensions::Extension* extension = GetExtension(origin)) {
|
| @@ -633,7 +633,7 @@ bool ContentSettingsObserver::IsWhitelistedForContentSettings(
|
| if (origin.isUnique())
|
| return false; // Uninitialized document?
|
|
|
| - if (EqualsASCII(origin.protocol(), chrome::kChromeUIScheme))
|
| + if (EqualsASCII(origin.protocol(), content::kChromeUIScheme))
|
| return true; // Browser UI elements should still work.
|
|
|
| if (EqualsASCII(origin.protocol(), chrome::kChromeDevToolsScheme))
|
|
|