diff options
Diffstat (limited to 'chrome/browser/views/download_shelf_view.cc')
-rw-r--r-- | chrome/browser/views/download_shelf_view.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/download_shelf_view.cc b/chrome/browser/views/download_shelf_view.cc index e2fd9f6..40d6520 100644 --- a/chrome/browser/views/download_shelf_view.cc +++ b/chrome/browser/views/download_shelf_view.cc @@ -6,7 +6,7 @@ #include <algorithm> -#include "app/gfx/chrome_canvas.h" +#include "app/gfx/canvas.h" #include "app/l10n_util.h" #include "app/resource_bundle.h" #include "base/logging.h" @@ -147,12 +147,12 @@ void DownloadShelfView::RemoveDownloadView(View* view) { SchedulePaint(); } -void DownloadShelfView::Paint(ChromeCanvas* canvas) { +void DownloadShelfView::Paint(gfx::Canvas* canvas) { PaintBackground(canvas); PaintBorder(canvas); } -void DownloadShelfView::PaintBorder(ChromeCanvas* canvas) { +void DownloadShelfView::PaintBorder(gfx::Canvas* canvas) { canvas->FillRectInt(kBorderColor, 0, 0, width(), 1); } |