From c2dacc9ec41232903ba700c6aef5ef98bfcb8af8 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Thu, 16 Oct 2008 23:51:38 +0000 Subject: 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 --- chrome/views/container_win.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chrome/views/container_win.cc') 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 -- cgit v1.1