Index: chrome/browser/interstitials/security_interstitial_page.cc |
diff --git a/chrome/browser/interstitials/security_interstitial_page.cc b/chrome/browser/interstitials/security_interstitial_page.cc |
index 45897417670b433225556b183516572992abe88d..0d1894761adebf66a311db830e8cc6566b944af8 100644 |
--- a/chrome/browser/interstitials/security_interstitial_page.cc |
+++ b/chrome/browser/interstitials/security_interstitial_page.cc |
@@ -91,14 +91,6 @@ std::string SecurityInterstitialPage::GetHTMLContents() { |
return webui::GetI18nTemplateHtml(html, &load_time_data); |
} |
-void SecurityInterstitialPage::SetReportingPreference(bool report) { |
- controller_->SetReportingPreference(report); |
-} |
- |
-void SecurityInterstitialPage::OpenExtendedReportingPrivacyPolicy() { |
- controller_->OpenExtendedReportingPrivacyPolicy(); |
-} |
- |
security_interstitials::MetricsHelper* |
SecurityInterstitialPage::metrics_helper() { |
return controller_->metrics_helper(); |
@@ -108,3 +100,7 @@ void SecurityInterstitialPage::set_metrics_helper( |
std::unique_ptr<security_interstitials::MetricsHelper> metrics_helper) { |
controller_->set_metrics_helper(std::move(metrics_helper)); |
} |
+ |
+ChromeControllerClient* SecurityInterstitialPage::controller() { |
+ return controller_.get(); |
+} |