diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
commit | c2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch) | |
tree | 4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/views/page_info_window.h | |
parent | d66e710ec668e34271def44d7f0416260657171c (diff) | |
download | chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.zip chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.gz chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.bz2 |
Rename ChromeViews namespace to views
http://crbug.com/2188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/page_info_window.h')
-rw-r--r-- | chrome/browser/views/page_info_window.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/chrome/browser/views/page_info_window.h b/chrome/browser/views/page_info_window.h index 3f94fec..97b7a5d 100644 --- a/chrome/browser/views/page_info_window.h +++ b/chrome/browser/views/page_info_window.h @@ -14,7 +14,7 @@ // The page info window displays information regarding the current page, // including security information. -namespace ChromeViews { +namespace views { class TabbedPane; } @@ -24,8 +24,8 @@ class PrefService; class Profile; class X509Certificate; -class PageInfoWindow : public ChromeViews::DialogDelegate, - public ChromeViews::NativeButton::Listener { +class PageInfoWindow : public views::DialogDelegate, + public views::NativeButton::Listener { public: enum TabID { GENERAL = 0, @@ -59,13 +59,13 @@ class PageInfoWindow : public ChromeViews::DialogDelegate, bool show_history, HWND parent); - // ChromeViews::Window overridden method. + // views::Window overridden method. void Show(); - // ChromeViews::NativeButton::Listener method. - virtual void ButtonPressed(ChromeViews::NativeButton* sender); + // views::NativeButton::Listener method. + virtual void ButtonPressed(views::NativeButton* sender); - // ChromeViews::DialogDelegate methods: + // views::DialogDelegate methods: virtual int GetDialogButtons() const; virtual std::wstring GetWindowTitle() const; virtual void SaveWindowPosition(const CRect& bounds, @@ -74,11 +74,11 @@ class PageInfoWindow : public ChromeViews::DialogDelegate, virtual bool RestoreWindowPosition(CRect* bounds, bool* maximized, bool* always_on_top); - virtual ChromeViews::View* GetContentsView(); + virtual views::View* GetContentsView(); private: - ChromeViews::View* CreateGeneralTabView(); - ChromeViews::View* CreateSecurityTabView( + views::View* CreateGeneralTabView(); + views::View* CreateSecurityTabView( Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, @@ -92,7 +92,7 @@ class PageInfoWindow : public ChromeViews::DialogDelegate, // Shows various information for the specified certificate in a new dialog. void ShowCertDialog(int cert_id); - ChromeViews::NativeButton* cert_info_button_; + views::NativeButton* cert_info_button_; // The id of the server cert for this page (0 means no cert). int cert_id_; |