| 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 29c1ff151ba8071311660adbe15bda9c062c6f6f..274288cf426ecd5d5472d1e458c5bd8b3178ef93 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1834,7 +1834,6 @@ void RenderProcessHostImpl::FilterURL(RenderProcessHost* rph,
|
| // navigation to the home page. This is often a privileged page
|
| // (chrome://newtab/) which is exactly what we don't want.
|
| *url = GURL(url::kAboutBlankURL);
|
| - RecordAction(base::UserMetricsAction("FilterURLTermiate_Invalid"));
|
| return;
|
| }
|
|
|
| @@ -1842,7 +1841,6 @@ void RenderProcessHostImpl::FilterURL(RenderProcessHost* rph,
|
| // The renderer treats all URLs in the about: scheme as being about:blank.
|
| // Canonicalize about: URLs to about:blank.
|
| *url = GURL(url::kAboutBlankURL);
|
| - RecordAction(base::UserMetricsAction("FilterURLTermiate_About"));
|
| }
|
|
|
| // Do not allow browser plugin guests to navigate to non-web URLs, since they
|
| @@ -1856,7 +1854,6 @@ void RenderProcessHostImpl::FilterURL(RenderProcessHost* rph,
|
| // later.
|
| VLOG(1) << "Blocked URL " << url->spec();
|
| *url = GURL(url::kAboutBlankURL);
|
| - RecordAction(base::UserMetricsAction("FilterURLTermiate_Blocked"));
|
| }
|
| }
|
|
|
|
|