Index: chrome/browser/metrics/metrics_service.cc |
diff --git a/chrome/browser/metrics/metrics_service.cc b/chrome/browser/metrics/metrics_service.cc |
index d48eb7b747a3fd64c839d25958b888d10d4cbce1..746e571af254abf4119212e0717e222528c91dd2 100644 |
--- a/chrome/browser/metrics/metrics_service.cc |
+++ b/chrome/browser/metrics/metrics_service.cc |
@@ -1513,16 +1513,6 @@ void MetricsService::LogLoadStarted(content::WebContents* web_contents) { |
IncrementLongPrefsValue(prefs::kUninstallMetricsPageLoadCount); |
// We need to save the prefs, as page load count is a critical stat, and it |
// might be lost due to a crash :-(. |
- |
- // Track whether the page loaded is a search results page. |
- if (web_contents) { |
- SearchTabHelper* search_tab_helper = |
- SearchTabHelper::FromWebContents(web_contents); |
- if (search_tab_helper) { |
- if (search_tab_helper->model()->mode().is_search_results()) |
- content::RecordAction(content::UserMetricsAction("PageLoadSRP")); |
- } |
- } |
} |
void MetricsService::LogRendererCrash(content::RenderProcessHost* host, |