Index: chrome/browser/ssl/ssl_blocking_page.cc |
diff --git a/chrome/browser/ssl/ssl_blocking_page.cc b/chrome/browser/ssl/ssl_blocking_page.cc |
index 12641f2571d4df47a5e250dcd275f112b26a40fd..e94a43b55b2ad8d3141049dea0f6cdc31e65ba26 100644 |
--- a/chrome/browser/ssl/ssl_blocking_page.cc |
+++ b/chrome/browser/ssl/ssl_blocking_page.cc |
@@ -58,11 +58,6 @@ enum SSLExpirationAndDecision { |
END_OF_SSL_EXPIRATION_AND_DECISION, |
}; |
-// Rappor prefix, which is used for both overridable and non-overridable |
-// interstitials so we don't leak the "overridable" bit. |
-const char kDeprecatedSSLRapporPrefix[] = "ssl2"; |
-const char kSSLRapporPrefix[] = "ssl3"; |
- |
std::string GetSamplingEventName(const bool overridable, const int cert_error) { |
std::string event_name(kEventNameBase); |
if (overridable) |
@@ -108,10 +103,6 @@ std::unique_ptr<ChromeMetricsHelper> CreateMetricsHelper( |
security_interstitials::MetricsHelper::ReportDetails reporting_info; |
reporting_info.metric_prefix = |
overridable ? "ssl_overridable" : "ssl_nonoverridable"; |
- reporting_info.rappor_prefix = kSSLRapporPrefix; |
- reporting_info.deprecated_rappor_prefix = kDeprecatedSSLRapporPrefix; |
- reporting_info.rappor_report_type = rappor::LOW_FREQUENCY_UMA_RAPPOR_TYPE; |
- reporting_info.deprecated_rappor_report_type = rappor::UMA_RAPPOR_TYPE; |
return base::MakeUnique<ChromeMetricsHelper>( |
web_contents, request_url, reporting_info, |
GetSamplingEventName(overridable, cert_error)); |