diff options
Diffstat (limited to 'app/gfx/canvas_win.cc')
-rw-r--r-- | app/gfx/canvas_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/gfx/canvas_win.cc b/app/gfx/canvas_win.cc index 2d818d4..9f70136 100644 --- a/app/gfx/canvas_win.cc +++ b/app/gfx/canvas_win.cc @@ -120,10 +120,10 @@ int ComputeFormatFlags(int flags, const std::wstring& text) { namespace gfx { Canvas::Canvas(int width, int height, bool is_opaque) - : skia::PlatformCanvasWin(width, height, is_opaque) { + : skia::PlatformCanvas(width, height, is_opaque) { } -Canvas::Canvas() : skia::PlatformCanvasWin() { +Canvas::Canvas() : skia::PlatformCanvas() { } Canvas::~Canvas() { |