| Index: chrome/browser/download/download_util.h
|
| diff --git a/chrome/browser/download/download_util.h b/chrome/browser/download/download_util.h
|
| index eeabc4a9ba9eca1aee69658522ddc85bf71783d2..9ba97148bbd4d6eddff7b2d9d7553575a64daeb2 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,
|
|
|