| Index: skia/ext/vector_platform_device_emf_win.cc
|
| diff --git a/skia/ext/vector_platform_device_emf_win.cc b/skia/ext/vector_platform_device_emf_win.cc
|
| index fe1ba2927dbe8b37691bce35642eb8ba7fdd4307..3356f217adf45c2d5edd3f8963b6de6cf15891cd 100644
|
| --- a/skia/ext/vector_platform_device_emf_win.cc
|
| +++ b/skia/ext/vector_platform_device_emf_win.cc
|
| @@ -211,6 +211,13 @@ void VectorPlatformDeviceEmf::drawRect(const SkDraw& draw,
|
| Cleanup();
|
| }
|
|
|
| +void VectorPlatformDeviceEmf::drawRRect(const SkDraw& draw, const SkRRect& rr,
|
| + const SkPaint& paint) {
|
| + SkPath path;
|
| + path.addRRect(rr);
|
| + this->drawPath(draw, path, paint, NULL, true);
|
| +}
|
| +
|
| void VectorPlatformDeviceEmf::drawPath(const SkDraw& draw,
|
| const SkPath& path,
|
| const SkPaint& paint,
|
|
|