| Index: chrome/browser/ui/browser_window.h
|
| diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
|
| index afbddd2b2dca65eb7c9ba0a31fe371fd2cfaa3c2..e5755f4c3bb95449c4695151707d5d552b7f3e49 100644
|
| --- a/chrome/browser/ui/browser_window.h
|
| +++ b/chrome/browser/ui/browser_window.h
|
| @@ -8,6 +8,7 @@
|
| #include "base/callback_forward.h"
|
| #include "chrome/browser/lifetime/browser_close_manager.h"
|
| #include "chrome/browser/signin/chrome_signin_helper.h"
|
| +#include "chrome/browser/ssl/security_state_model.h"
|
| #include "chrome/browser/translate/chrome_translate_client.h"
|
| #include "chrome/browser/ui/bookmarks/bookmark_bar.h"
|
| #include "chrome/browser/ui/browser.h"
|
| @@ -39,7 +40,6 @@ struct WebApplicationInfo;
|
| namespace content {
|
| class WebContents;
|
| struct NativeWebKeyboardEvent;
|
| -struct SSLStatus;
|
| }
|
|
|
| namespace extensions {
|
| @@ -310,10 +310,11 @@ class BrowserWindow : public ui::BaseWindow {
|
| // url of the page/frame the info applies to, |ssl| is the SSL information for
|
| // that page/frame. If |show_history| is true, a section showing how many
|
| // times that URL has been visited is added to the page info.
|
| - virtual void ShowWebsiteSettings(Profile* profile,
|
| - content::WebContents* web_contents,
|
| - const GURL& url,
|
| - const content::SSLStatus& ssl) = 0;
|
| + virtual void ShowWebsiteSettings(
|
| + Profile* profile,
|
| + content::WebContents* web_contents,
|
| + const GURL& url,
|
| + const SecurityStateModel::SecurityInfo& security_info) = 0;
|
|
|
| // Shows the app menu (for accessibility).
|
| virtual void ShowAppMenu() = 0;
|
|
|