diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 07:37:29 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 07:37:29 +0000 |
commit | 82522511b7921e8c61742ebd80a4c674c56e7e48 (patch) | |
tree | 381d71de2b9c7b99675e6f2b4523ae0876c72ce8 /views/window/custom_frame_view.cc | |
parent | 631cf822bd6e64cf469544b42c9975f5602c29a6 (diff) | |
download | chromium_src-82522511b7921e8c61742ebd80a4c674c56e7e48.zip chromium_src-82522511b7921e8c61742ebd80a4c674c56e7e48.tar.gz chromium_src-82522511b7921e8c61742ebd80a4c674c56e7e48.tar.bz2 |
ChromeCanvas->gfx::Canvas
Rename files too.
TBR=brettw
http://crbug.com/11387
Review URL: http://codereview.chromium.org/113443
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16148 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/window/custom_frame_view.cc')
-rw-r--r-- | views/window/custom_frame_view.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/views/window/custom_frame_view.cc b/views/window/custom_frame_view.cc index f7f9ab3..2869c07 100644 --- a/views/window/custom_frame_view.cc +++ b/views/window/custom_frame_view.cc @@ -4,8 +4,8 @@ #include "views/window/custom_frame_view.h" -#include "app/gfx/chrome_canvas.h" -#include "app/gfx/chrome_font.h" +#include "app/gfx/canvas.h" +#include "app/gfx/font.h" #include "app/gfx/path.h" #include "app/resource_bundle.h" #include "app/theme_provider.h" @@ -210,7 +210,7 @@ void CustomFrameView::ResetWindowControls() { /////////////////////////////////////////////////////////////////////////////// // CustomFrameView, View overrides: -void CustomFrameView::Paint(ChromeCanvas* canvas) { +void CustomFrameView::Paint(gfx::Canvas* canvas) { if (frame_->IsMaximized()) PaintMaximizedFrameBorder(canvas); else @@ -295,7 +295,7 @@ int CustomFrameView::TitleCoordinates(int* title_top_spacing, BottomEdgeThicknessWithinNonClientHeight(); } -void CustomFrameView::PaintRestoredFrameBorder(ChromeCanvas* canvas) { +void CustomFrameView::PaintRestoredFrameBorder(gfx::Canvas* canvas) { // Window frame mode. ResourceBundle& rb = ResourceBundle::GetSharedInstance(); @@ -373,7 +373,7 @@ void CustomFrameView::PaintRestoredFrameBorder(ChromeCanvas* canvas) { } void CustomFrameView::PaintMaximizedFrameBorder( - ChromeCanvas* canvas) { + gfx::Canvas* canvas) { ResourceBundle& rb = ResourceBundle::GetSharedInstance(); SkBitmap* top_edge = rb.GetBitmapNamed(IDR_WINDOW_TOP_CENTER); @@ -388,7 +388,7 @@ void CustomFrameView::PaintMaximizedFrameBorder( frame_->GetClientView()->y() - edge_height, width(), edge_height); } -void CustomFrameView::PaintTitleBar(ChromeCanvas* canvas) { +void CustomFrameView::PaintTitleBar(gfx::Canvas* canvas) { WindowDelegate* d = frame_->GetDelegate(); // It seems like in some conditions we can be asked to paint after the window @@ -402,7 +402,7 @@ void CustomFrameView::PaintTitleBar(ChromeCanvas* canvas) { title_bounds_.width(), title_bounds_.height()); } -void CustomFrameView::PaintRestoredClientEdge(ChromeCanvas* canvas) { +void CustomFrameView::PaintRestoredClientEdge(gfx::Canvas* canvas) { gfx::Rect client_area_bounds = frame_->GetClientView()->bounds(); int client_area_top = client_area_bounds.y(); |