Index: ui/gfx/path_win.cc |
diff --git a/ui/gfx/path_win.cc b/ui/gfx/path_win.cc |
index b28ea7a2c7bf02e99a501c4f9351d199fe6beed5..0f55253b0fe719a5815301f362d7f0469b90874a 100644 |
--- a/ui/gfx/path_win.cc |
+++ b/ui/gfx/path_win.cc |
@@ -25,16 +25,11 @@ HRGN CreateHRGNFromSkRegion(const SkRegion& region) { |
} |
HRGN CreateHRGNFromSkPath(const SkPath& path) { |
- int point_count = path.getPoints(NULL, 0); |
- scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); |
- path.getPoints(points.get(), point_count); |
- scoped_ptr<POINT[]> windows_points(new POINT[point_count]); |
- for (int i = 0; i < point_count; ++i) { |
- windows_points[i].x = SkScalarRoundToInt(points[i].fX); |
- windows_points[i].y = SkScalarRoundToInt(points[i].fY); |
- } |
- |
- return ::CreatePolygonRgn(windows_points.get(), point_count, ALTERNATE); |
+ SkRegion clip_region; |
+ clip_region.setRect(path.getBounds().round()); |
+ SkRegion region; |
+ region.setPath(path, clip_region); |
+ return CreateHRGNFromSkRegion(region); |
} |
// See path_aura.cc for Aura definition of these methods: |