Index: chrome/browser/ui/webui/interstitials/interstitial_ui.cc |
diff --git a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc |
index 5148eda3f0e4fc91d1d6d96b5a0e3eda7e3b8e74..65e64f7930ab5c1334e6768d14c500ea47f5ed1e 100644 |
--- a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc |
+++ b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc |
@@ -7,6 +7,7 @@ |
#include "base/strings/string_number_conversions.h" |
#include "base/strings/string_util.h" |
#include "chrome/browser/browser_process.h" |
+#include "chrome/browser/net/certificate_error_reporter.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" |
#include "chrome/browser/safe_browsing/safe_browsing_service.h" |
@@ -94,13 +95,9 @@ SSLBlockingPage* CreateSSLBlockingPage(content::WebContents* web_contents) { |
options_mask |= SSLBlockingPage::OVERRIDABLE; |
if (strict_enforcement) |
options_mask |= SSLBlockingPage::STRICT_ENFORCEMENT; |
- return new SSLBlockingPage(web_contents, |
- cert_error, |
- ssl_info, |
- request_url, |
- options_mask, |
- time_triggered_, |
- base::Callback<void(bool)>()); |
+ return new SSLBlockingPage(web_contents, cert_error, ssl_info, request_url, |
+ options_mask, time_triggered_, nullptr, |
+ base::Callback<void(bool)>()); |
} |
SafeBrowsingBlockingPage* CreateSafeBrowsingBlockingPage( |