Index: chrome/browser/download/download_util.h |
diff --git a/chrome/browser/download/download_util.h b/chrome/browser/download/download_util.h |
index 8f75749e30560e37a5b8dc20ae590a114c3e93c8..c25aacae9c3d64bf01c64f5ff27345763417787b 100644 |
--- a/chrome/browser/download/download_util.h |
+++ b/chrome/browser/download/download_util.h |
@@ -32,6 +32,8 @@ class DownloadItem; |
namespace gfx { |
class Canvas; |
class Image; |
+class ImageSkia; |
+class Rect; |
} |
namespace download_util { |
@@ -91,6 +93,14 @@ 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 PaintCustomDownloadProgress(gfx::Canvas* canvas, |
+ const gfx::ImageSkia& background_image, |
+ const gfx::ImageSkia& foreground_image, |
+ int image_size, |
+ const gfx::Rect& bounds, |
+ int start_angle, |
+ int percent_done); |
+ |
void PaintDownloadProgress(gfx::Canvas* canvas, |
#if defined(TOOLKIT_VIEWS) |
views::View* containing_view, |