| Index: chrome/browser/ui/browser_commands.cc
|
| diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
|
| index 4b43f9887bf4facded5635ba2f30bc135d5d9379..b4e3fd621fd6c859e9bbbd14403fda5e8a8ad8cb 100644
|
| --- a/chrome/browser/ui/browser_commands.cc
|
| +++ b/chrome/browser/ui/browser_commands.cc
|
| @@ -117,7 +117,6 @@ using content::NavigationController;
|
| using content::NavigationEntry;
|
| using content::OpenURLParams;
|
| using content::Referrer;
|
| -using content::SSLStatus;
|
| using content::WebContents;
|
|
|
| namespace chrome {
|
| @@ -860,13 +859,14 @@ void ShowFindBar(Browser* browser) {
|
| browser->GetFindBarController()->Show();
|
| }
|
|
|
| -void ShowWebsiteSettings(Browser* browser,
|
| - content::WebContents* web_contents,
|
| - const GURL& url,
|
| - const SSLStatus& ssl) {
|
| +void ShowWebsiteSettings(
|
| + Browser* browser,
|
| + content::WebContents* web_contents,
|
| + const GURL& url,
|
| + const SecurityStateModel::SecurityInfo& security_info) {
|
| browser->window()->ShowWebsiteSettings(
|
| Profile::FromBrowserContext(web_contents->GetBrowserContext()),
|
| - web_contents, url, ssl);
|
| + web_contents, url, security_info);
|
| }
|
|
|
| void Print(Browser* browser) {
|
|
|