summaryrefslogtreecommitdiffstats
path: root/chrome/views/container_win.cc
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/views/container_win.cc
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/views/container_win.cc')
-rw-r--r--chrome/views/container_win.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/views/container_win.cc b/chrome/views/container_win.cc
index eecc228..7c0239d 100644
--- a/chrome/views/container_win.cc
+++ b/chrome/views/container_win.cc
@@ -15,7 +15,7 @@
#include "chrome/views/hwnd_notification_source.h"
#include "chrome/views/root_view.h"
-namespace ChromeViews {
+namespace views {
static const DWORD kWindowDefaultChildStyle =
WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
@@ -168,7 +168,7 @@ void ContainerWin::Init(HWND parent, const gfx::Rect& bounds,
root_view_->OnContainerCreated();
if (has_own_focus_manager) {
- ChromeViews::FocusManager::CreateFocusManager(hwnd_, GetRootView());
+ FocusManager::CreateFocusManager(hwnd_, GetRootView());
} else {
// Subclass the window so we get the tab key messages when a view with no
// associated native window is focused.
@@ -217,7 +217,7 @@ void ContainerWin::SetContentsView(View* view) {
}
///////////////////////////////////////////////////////////////////////////////
-// ChromeViews::Container implementation:
+// Container implementation:
void ContainerWin::GetBounds(CRect *out, bool including_frame) const {
if (including_frame) {
@@ -912,5 +912,5 @@ LRESULT CALLBACK ContainerWin::WndProc(HWND window, UINT message,
return result;
}
-} // namespace ChromeViews
+} // namespace views