diff options
Diffstat (limited to 'base/gfx/vector_device.cc')
-rw-r--r-- | base/gfx/vector_device.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/gfx/vector_device.cc b/base/gfx/vector_device.cc index c7e20f6..c645ca7 100644 --- a/base/gfx/vector_device.cc +++ b/base/gfx/vector_device.cc @@ -72,7 +72,7 @@ VectorDevice* VectorDevice::create(HDC dc, int width, int height) { } VectorDevice::VectorDevice(HDC dc, const SkBitmap& bitmap) - : PlatformDevice(bitmap), + : PlatformDeviceWin(bitmap), hdc_(dc), previous_brush_(NULL), previous_pen_(NULL), @@ -191,7 +191,7 @@ void VectorDevice::drawPath(const SkDraw& draw, const SkPath& path, return; } HDC dc = getBitmapDC(); - PlatformDevice::LoadPathToDC(dc, path); + PlatformDeviceWin::LoadPathToDC(dc, path); switch (paint.getStyle()) { case SkPaint::kFill_Style: { BOOL res = StrokeAndFillPath(dc); |