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 /chrome/browser/download | |
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 'chrome/browser/download')
-rw-r--r-- | chrome/browser/download/download_util.cc | 4 | ||||
-rw-r--r-- | chrome/browser/download/download_util.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/download/download_util.cc b/chrome/browser/download/download_util.cc index 111baeb..df3fb82 100644 --- a/chrome/browser/download/download_util.cc +++ b/chrome/browser/download/download_util.cc @@ -65,7 +65,7 @@ SkBitmap* g_background_16 = NULL; SkBitmap* g_foreground_32 = NULL; SkBitmap* g_background_32 = NULL; -void PaintDownloadProgress(ChromeCanvas* canvas, +void PaintDownloadProgress(gfx::Canvas* canvas, #if defined(OS_WIN) views::View* containing_view, #endif @@ -164,7 +164,7 @@ void PaintDownloadProgress(ChromeCanvas* canvas, foreground_paint); } -void PaintDownloadComplete(ChromeCanvas* canvas, +void PaintDownloadComplete(gfx::Canvas* canvas, #if defined(OS_WIN) views::View* containing_view, #endif diff --git a/chrome/browser/download/download_util.h b/chrome/browser/download/download_util.h index f3c658f..f187706 100644 --- a/chrome/browser/download/download_util.h +++ b/chrome/browser/download/download_util.h @@ -10,7 +10,7 @@ #include <set> #include <string> -#include "app/gfx/chrome_canvas.h" +#include "app/gfx/canvas.h" #include "base/basictypes.h" #include "base/task.h" @@ -97,7 +97,7 @@ enum PaintDownloadProgressSize { // require the containing View in addition to the canvas because if we are // drawing in a right-to-left locale, we need to mirror the position of the // progress animation within the containing View. -void PaintDownloadProgress(ChromeCanvas* canvas, +void PaintDownloadProgress(gfx::Canvas* canvas, #if defined(OS_WIN) views::View* containing_view, #endif @@ -107,7 +107,7 @@ void PaintDownloadProgress(ChromeCanvas* canvas, int percent, PaintDownloadProgressSize size); -void PaintDownloadComplete(ChromeCanvas* canvas, +void PaintDownloadComplete(gfx::Canvas* canvas, #if defined(OS_WIN) views::View* containing_view, #endif |