diff options
Diffstat (limited to 'chrome/browser/ui/panels')
-rw-r--r-- | chrome/browser/ui/panels/panel.cc | 3 | ||||
-rw-r--r-- | chrome/browser/ui/panels/panel.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc index 54e33fa..e723deb 100644 --- a/chrome/browser/ui/panels/panel.cc +++ b/chrome/browser/ui/panels/panel.cc @@ -27,6 +27,7 @@ #include "ui/gfx/screen.h" #endif +using content::SSLStatus; using content::WebContents; // static @@ -459,7 +460,7 @@ void Panel::TabContentsFocused(TabContents* tab_contents) { void Panel::ShowPageInfo(Profile* profile, const GURL& url, - const NavigationEntry::SSLStatus& ssl, + const SSLStatus& ssl, bool show_history) { NOTIMPLEMENTED(); } diff --git a/chrome/browser/ui/panels/panel.h b/chrome/browser/ui/panels/panel.h index f59ad84..da377f1 100644 --- a/chrome/browser/ui/panels/panel.h +++ b/chrome/browser/ui/panels/panel.h @@ -148,7 +148,7 @@ class Panel : public BrowserWindow, virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; virtual void ShowPageInfo(Profile* profile, const GURL& url, - const NavigationEntry::SSLStatus& ssl, + const content::SSLStatus& ssl, bool show_history) OVERRIDE; virtual void ShowAppMenu() OVERRIDE; virtual bool PreHandleKeyboardEvent( |