| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 594599872cb9530af18f9b26090cd55ce94c53a0..20ef9e40a55b6b42d831c0bf97bb3e1790f3fd03 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -2376,12 +2376,6 @@ void RenderProcessHostImpl::FilterURL(RenderProcessHost* rph,
|
| return;
|
| }
|
|
|
| - if (url->SchemeIs(url::kAboutScheme)) {
|
| - // The renderer treats all URLs in the about: scheme as being about:blank.
|
| - // Canonicalize about: URLs to about:blank.
|
| - *url = GURL(url::kAboutBlankURL);
|
| - }
|
| -
|
| if (!policy->CanRequestURL(rph->GetID(), *url)) {
|
| // If this renderer is not permitted to request this URL, we invalidate the
|
| // URL. This prevents us from storing the blocked URL and becoming confused
|
|
|