summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_tab_container.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
commitc2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch)
tree4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/external_tab_container.h
parentd66e710ec668e34271def44d7f0416260657171c (diff)
downloadchromium_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/external_tab_container.h')
-rw-r--r--chrome/browser/external_tab_container.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/external_tab_container.h b/chrome/browser/external_tab_container.h
index 2e3d589..5099958 100644
--- a/chrome/browser/external_tab_container.h
+++ b/chrome/browser/external_tab_container.h
@@ -30,8 +30,8 @@ class TabContentsContainerView;
// It also implements Container
class ExternalTabContainer : public TabContentsDelegate,
public NotificationObserver,
- public ChromeViews::Container,
- public ChromeViews::KeystrokeListener,
+ public views::Container,
+ public views::KeystrokeListener,
public CWindowImpl<ExternalTabContainer,
CWindow,
CWinTraits<WS_POPUP |
@@ -88,21 +88,21 @@ class ExternalTabContainer : public TabContentsDelegate,
const NotificationDetails& details);
////////////////////////////////////////////////////////////////////////////////
- // ChromeViews::Container
+ // views::Container
////////////////////////////////////////////////////////////////////////////////
virtual void GetBounds(CRect *out, bool including_frame) const;
virtual void MoveToFront(bool should_activate);
virtual HWND GetHWND() const;
virtual void PaintNow(const CRect& update_rect);
- virtual ChromeViews::RootView* GetRootView();
+ virtual views::RootView* GetRootView();
virtual bool IsVisible();
virtual bool IsActive();
virtual bool GetAccelerator(int cmd_id,
- ChromeViews::Accelerator* accelerator) {
+ views::Accelerator* accelerator) {
return false;
}
- // ChromeViews::KeystrokeListener implementation
+ // views::KeystrokeListener implementation
// This method checks whether this keydown message is needed by the
// external host. If so, it sends it over to the external host
virtual bool ProcessKeyDown(HWND window, UINT message, WPARAM wparam,
@@ -135,7 +135,7 @@ class ExternalTabContainer : public TabContentsDelegate,
NotificationRegistrar registrar_;
// Root view
- ChromeViews::RootView root_view_;
+ views::RootView root_view_;
// The accelerator table of the external host.
HACCEL external_accel_table_;
unsigned int external_accel_entry_count_;