| Index: content/browser/child_process_security_policy_impl.cc
|
| ===================================================================
|
| --- content/browser/child_process_security_policy_impl.cc (revision 276109)
|
| +++ content/browser/child_process_security_policy_impl.cc (working copy)
|
| @@ -316,7 +316,7 @@
|
| RegisterWebSafeScheme(url::kFileSystemScheme);
|
|
|
| // We know about the following pseudo schemes and treat them specially.
|
| - RegisterPseudoScheme(kAboutScheme);
|
| + RegisterPseudoScheme(url::kAboutScheme);
|
| RegisterPseudoScheme(url::kJavaScriptScheme);
|
| RegisterPseudoScheme(kViewSourceScheme);
|
| }
|
| @@ -617,7 +617,7 @@
|
| return CanRequestURL(child_id, child_url);
|
| }
|
|
|
| - if (LowerCaseEqualsASCII(url.spec(), kAboutBlankURL))
|
| + if (LowerCaseEqualsASCII(url.spec(), url::kAboutBlankURL))
|
| return true; // Every child process can request <about:blank>.
|
|
|
| // URLs like <about:memory> and <about:crash> shouldn't be requestable by
|
|
|