| Index: chrome/browser/ui/cocoa/browser_window_cocoa.mm
|
| diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.mm b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
|
| index 515594d62ca41f120e0e80426625ac8ceb49b8b2..ba663b53963e34dbd2bc7db416479af23e16fd70 100644
|
| --- a/chrome/browser/ui/cocoa/browser_window_cocoa.mm
|
| +++ b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
|
| @@ -73,7 +73,6 @@
|
| #endif
|
|
|
| using content::NativeWebKeyboardEvent;
|
| -using content::SSLStatus;
|
| using content::WebContents;
|
|
|
| namespace {
|
| @@ -711,8 +710,9 @@ void BrowserWindowCocoa::ShowWebsiteSettings(
|
| Profile* profile,
|
| content::WebContents* web_contents,
|
| const GURL& url,
|
| - const content::SSLStatus& ssl) {
|
| - WebsiteSettingsUIBridge::Show(window(), profile, web_contents, url, ssl);
|
| + const SecurityStateModel::SecurityInfo& security_info) {
|
| + WebsiteSettingsUIBridge::Show(window(), profile, web_contents, url,
|
| + security_info);
|
| }
|
|
|
| void BrowserWindowCocoa::ShowAppMenu() {
|
|
|