| Index: chrome/browser/views/fullscreen_exit_bubble.cc
|
| ===================================================================
|
| --- chrome/browser/views/fullscreen_exit_bubble.cc (revision 16147)
|
| +++ chrome/browser/views/fullscreen_exit_bubble.cc (working copy)
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "chrome/browser/views/fullscreen_exit_bubble.h"
|
|
|
| -#include "app/gfx/chrome_canvas.h"
|
| +#include "app/gfx/canvas.h"
|
| #include "app/l10n_util.h"
|
| #include "app/l10n_util_win.h"
|
| #include "app/resource_bundle.h"
|
| @@ -29,7 +29,7 @@
|
|
|
| // views::View
|
| virtual void Layout();
|
| - virtual void Paint(ChromeCanvas* canvas);
|
| + virtual void Paint(gfx::Canvas* canvas);
|
|
|
| // Handle to the HWND that contains us.
|
| views::WidgetWin* popup_;
|
| @@ -71,7 +71,7 @@
|
| link_preferred_size.width(), link_preferred_size.height());
|
| }
|
|
|
| -void FullscreenExitBubble::FullscreenExitView::Paint(ChromeCanvas* canvas) {
|
| +void FullscreenExitBubble::FullscreenExitView::Paint(gfx::Canvas* canvas) {
|
| // Create a round-bottomed rect to fill the whole View.
|
| CRect parent_rect;
|
| SkRect rect;
|
|
|