summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/constrained_window_impl.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/views/constrained_window_impl.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/views/constrained_window_impl.h')
-rw-r--r--chrome/browser/views/constrained_window_impl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/views/constrained_window_impl.h b/chrome/browser/views/constrained_window_impl.h
index 90c2db3..d28e9d3 100644
--- a/chrome/browser/views/constrained_window_impl.h
+++ b/chrome/browser/views/constrained_window_impl.h
@@ -13,7 +13,7 @@
class ConstrainedTabContentsWindowDelegate;
class ConstrainedWindowAnimation;
class ConstrainedWindowNonClientView;
-namespace ChromeViews {
+namespace views {
class HWNDView;
class WindowDelegate;
}
@@ -25,7 +25,7 @@ class WindowDelegate;
// a child HWND with a custom window frame.
//
class ConstrainedWindowImpl : public ConstrainedWindow,
- public ChromeViews::CustomFrameWindow,
+ public views::CustomFrameWindow,
public TabContentsDelegate {
public:
virtual ~ConstrainedWindowImpl();
@@ -109,10 +109,10 @@ class ConstrainedWindowImpl : public ConstrainedWindow,
// Use the static factory methods on ConstrainedWindow to construct a
// ConstrainedWindow.
ConstrainedWindowImpl(TabContents* owner,
- ChromeViews::WindowDelegate* window_delegate,
+ views::WindowDelegate* window_delegate,
TabContents* constrained_contents);
ConstrainedWindowImpl(TabContents* owner,
- ChromeViews::WindowDelegate* window_delegate);
+ views::WindowDelegate* window_delegate);
void Init(TabContents* owner);
// Called after changing either the anchor point or titlebar
@@ -128,7 +128,7 @@ class ConstrainedWindowImpl : public ConstrainedWindow,
void ResizeConstrainedWindow(int width, int height);
// Initialize the Constrained Window as a Constrained Dialog containing a
- // ChromeViews::View client area.
+ // views::View client area.
void InitAsDialog(const gfx::Rect& initial_bounds);
// Builds the underlying HWND and window delegates for a newly
@@ -172,14 +172,14 @@ class ConstrainedWindowImpl : public ConstrainedWindow,
// when this window is destroyed.
bool focus_restoration_disabled_;
- // A default ChromeViews::WindowDelegate implementation for this window when
+ // A default views::WindowDelegate implementation for this window when
// a TabContents is being constrained. (For the Constrained Dialog case, the
// caller is required to provide the WindowDelegate).
- scoped_ptr<ChromeViews::WindowDelegate> contents_window_delegate_;
+ scoped_ptr<views::WindowDelegate> contents_window_delegate_;
// We keep a reference on the HWNDView so we can properly detach the tab
// contents when detaching.
- ChromeViews::HWNDView* contents_container_;
+ views::HWNDView* contents_container_;
// true if this window is really a constrained dialog. This is set by
// InitAsDialog().