| Index: views/widget/widget_win.cc
|
| ===================================================================
|
| --- views/widget/widget_win.cc (revision 50789)
|
| +++ views/widget/widget_win.cc (working copy)
|
| @@ -9,6 +9,7 @@
|
| #include "app/win_util.h"
|
| #include "base/string_util.h"
|
| #include "base/win_util.h"
|
| +#include "gfx/canvas.h"
|
| #include "gfx/canvas_skia.h"
|
| #include "gfx/native_theme_win.h"
|
| #include "gfx/path.h"
|
| @@ -1121,9 +1122,9 @@
|
| }
|
|
|
| void WidgetWin::SizeContents(const gfx::Size& window_size) {
|
| - contents_.reset(new gfx::CanvasSkia(window_size.width(),
|
| - window_size.height(),
|
| - false));
|
| + contents_.reset(new gfx::Canvas(window_size.width(),
|
| + window_size.height(),
|
| + false));
|
| }
|
|
|
| void WidgetWin::PaintLayeredWindow() {
|
|
|