diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 00:26:30 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 00:26:30 +0000 |
commit | 4d0bd1045bc0df8daea2a5626e73906cb074631b (patch) | |
tree | 6794b895e236b68c2f7de1163dfb1c554646364c /chrome/browser/views/old_frames/xp_frame.cc | |
parent | 7609533b68dcbeaa80bf712dd84726d1da8d3f8a (diff) | |
download | chromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.zip chromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.tar.gz chromium_src-4d0bd1045bc0df8daea2a5626e73906cb074631b.tar.bz2 |
Rename ViewContainer to Container and HWNDViewContainer to ContainerWin.
http://crbug.com/3430
Review URL: http://codereview.chromium.org/7376
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3441 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/old_frames/xp_frame.cc')
-rw-r--r-- | chrome/browser/views/old_frames/xp_frame.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chrome/browser/views/old_frames/xp_frame.cc b/chrome/browser/views/old_frames/xp_frame.cc index 2512f63..24f614d 100644 --- a/chrome/browser/views/old_frames/xp_frame.cc +++ b/chrome/browser/views/old_frames/xp_frame.cc @@ -37,7 +37,6 @@ #include "chrome/views/background.h" #include "chrome/views/event.h" #include "chrome/views/focus_manager.h" -#include "chrome/views/hwnd_view_container.h" #include "chrome/views/hwnd_notification_source.h" #include "chrome/views/tooltip_manager.h" #include "chrome/views/view.h" @@ -540,7 +539,7 @@ void XPFrame::Init() { FrameUtil::LoadAccelerators(this, accelerators_table, this); ShelfVisibilityChanged(); - root_view_.OnViewContainerCreated(); + root_view_.OnContainerCreated(); } TabStrip* XPFrame::CreateTabStrip(Browser* browser) { @@ -879,7 +878,7 @@ void XPFrame::Close() { } else { // Empty tab strip, it's now safe to do the final clean-up. - root_view_.OnViewContainerDestroyed(); + root_view_.OnContainerDestroyed(); NotificationService::current()->Notify( NOTIFY_WINDOW_CLOSED, Source<HWND>(m_hWnd), @@ -1794,7 +1793,7 @@ void XPFrame::SetResizeCursor(ResizeMode r_mode) { //////////////////////////////////////////////////////////////////////////////// // -// ViewContainer +// Container // //////////////////////////////////////////////////////////////////////////////// @@ -1814,7 +1813,7 @@ gfx::Rect XPFrame::GetBoundsForContentBounds(const gfx::Rect content_rect) { } gfx::Point p; - ChromeViews::View::ConvertPointToViewContainer(tab_contents_container_, &p); + ChromeViews::View::ConvertPointToContainer(tab_contents_container_, &p); CRect bounds; GetBounds(&bounds, true); |