| 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..31a98bef8aff9cee0d0c40c41c45fcc78fdbe507 100644
 | 
| --- a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| +++ b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
 | 
| @@ -94,13 +94,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(
 | 
| 
 |