| Index: chrome/browser/ui/views/browser_dialogs_views_mac.cc | 
| diff --git a/chrome/browser/ui/views/browser_dialogs_views_mac.cc b/chrome/browser/ui/views/browser_dialogs_views_mac.cc | 
| index 928ef1a1fa62cb2db151f091023fcbf0a7480bc4..1a8e754e87319a3f34abddc13c82c51b66398e42 100644 | 
| --- a/chrome/browser/ui/views/browser_dialogs_views_mac.cc | 
| +++ b/chrome/browser/ui/views/browser_dialogs_views_mac.cc | 
| @@ -17,14 +17,15 @@ | 
|  | 
| namespace chrome { | 
|  | 
| -void ShowWebsiteSettingsBubbleViewsAtPoint(const gfx::Point& anchor_point, | 
| -                                           Profile* profile, | 
| -                                           content::WebContents* web_contents, | 
| -                                           const GURL& url, | 
| -                                           const content::SSLStatus& ssl) { | 
| -  WebsiteSettingsPopupView::ShowPopup(nullptr, | 
| -                                      gfx::Rect(anchor_point, gfx::Size()), | 
| -                                      profile, web_contents, url, ssl); | 
| +void ShowWebsiteSettingsBubbleViewsAtPoint( | 
| +    const gfx::Point& anchor_point, | 
| +    Profile* profile, | 
| +    content::WebContents* web_contents, | 
| +    const GURL& url, | 
| +    const SecurityStateModel::SecurityInfo& security_info) { | 
| +  WebsiteSettingsPopupView::ShowPopup( | 
| +      nullptr, gfx::Rect(anchor_point, gfx::Size()), profile, web_contents, url, | 
| +      security_info); | 
| } | 
|  | 
| void ShowBookmarkBubbleViewsAtPoint(const gfx::Point& anchor_point, | 
|  |