| Index: chrome/browser/interstitials/security_interstitial_page.h
|
| diff --git a/chrome/browser/interstitials/security_interstitial_page.h b/chrome/browser/interstitials/security_interstitial_page.h
|
| index 94dd73886b17e94896b9955422493c43c11ae536..f013d9640449298550651d3fa862f241d534bb02 100644
|
| --- a/chrome/browser/interstitials/security_interstitial_page.h
|
| +++ b/chrome/browser/interstitials/security_interstitial_page.h
|
| @@ -49,7 +49,7 @@ class SecurityInterstitialPage : public content::InterstitialPageDelegate {
|
|
|
| // Gives an opportunity for child classes to react to Show() having run. The
|
| // interstitial_page_ will now have a value.
|
| - virtual void AfterShow() = 0;
|
| + virtual void AfterShow() {}
|
|
|
| // InterstitialPageDelegate method:
|
| std::string GetHTMLContents() override;
|
| @@ -68,12 +68,12 @@ class SecurityInterstitialPage : public content::InterstitialPageDelegate {
|
| // TODO(felt): Remove these. They are temporary methods, used to pass along
|
| // calls to the |controller_| for subclasses that don't yet have their own
|
| // ChromeControllerClients. crbug.com/488673
|
| - void SetReportingPreference(bool report);
|
| - void OpenExtendedReportingPrivacyPolicy();
|
| security_interstitials::MetricsHelper* metrics_helper();
|
| void set_metrics_helper(
|
| std::unique_ptr<security_interstitials::MetricsHelper> metrics_helper);
|
|
|
| + ChromeControllerClient* controller();
|
| +
|
| private:
|
| // The WebContents with which this interstitial page is
|
| // associated. Not available in ~SecurityInterstitialPage, since it
|
|
|