| Index: chrome/browser/ui/android/connection_info_popup_android.cc
|
| diff --git a/chrome/browser/ui/android/connection_info_popup_android.cc b/chrome/browser/ui/android/connection_info_popup_android.cc
|
| index d049fdf4a992c4669297218d0e4a20e4e1ee1a97..225b6204233bd299f676e8123c06f8f3692e49b3 100644
|
| --- a/chrome/browser/ui/android/connection_info_popup_android.cc
|
| +++ b/chrome/browser/ui/android/connection_info_popup_android.cc
|
| @@ -90,13 +90,14 @@ ConnectionInfoPopupAndroid::ConnectionInfoPopupAndroid(
|
|
|
| popup_jobject_.Reset(env, java_website_settings_pop);
|
|
|
| + SecurityStateModel* security_model =
|
| + SecurityStateModel::FromWebContents(web_contents);
|
| + DCHECK(security_model);
|
| +
|
| presenter_.reset(new WebsiteSettings(
|
| - this,
|
| - Profile::FromBrowserContext(web_contents->GetBrowserContext()),
|
| - TabSpecificContentSettings::FromWebContents(web_contents),
|
| - web_contents,
|
| - nav_entry->GetURL(),
|
| - nav_entry->GetSSL(),
|
| + this, Profile::FromBrowserContext(web_contents->GetBrowserContext()),
|
| + TabSpecificContentSettings::FromWebContents(web_contents), web_contents,
|
| + nav_entry->GetURL(), security_model->GetSecurityInfo(),
|
| content::CertStore::GetInstance()));
|
| }
|
|
|
|
|