Index: ios/chrome/browser/ssl/ios_ssl_blocking_page.mm |
diff --git a/ios/chrome/browser/ssl/ios_ssl_blocking_page.mm b/ios/chrome/browser/ssl/ios_ssl_blocking_page.mm |
index a088c1e3e9194aa67a3d56e6124c1bcf581d9139..7a3d65f325fe939d48a41b76dee3d80fbaf21b9c 100644 |
--- a/ios/chrome/browser/ssl/ios_ssl_blocking_page.mm |
+++ b/ios/chrome/browser/ssl/ios_ssl_blocking_page.mm |
@@ -39,11 +39,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"; |
- |
void RecordSSLExpirationPageEventState(bool expired_but_previously_allowed, |
bool proceed, |
bool overridable) { |
@@ -75,10 +70,6 @@ IOSChromeMetricsHelper* CreateMetricsHelper(web::WebState* web_state, |
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 new IOSChromeMetricsHelper(web_state, request_url, reporting_info); |
} |