| Index: gfx/path.h
|
| diff --git a/gfx/path.h b/gfx/path.h
|
| index cdc11c841971da2878bf608d6abe8b19d75a623a..36fed4afa2743bfc81126c0a8656389193109696 100644
|
| --- a/gfx/path.h
|
| +++ b/gfx/path.h
|
| @@ -21,11 +21,13 @@ class Path : public SkPath {
|
| int y;
|
| };
|
|
|
| - Path() : SkPath() { moveTo(0, 0); }
|
| + Path();
|
|
|
| // Creates a path populated with the specified points.
|
| Path(const Point* points, size_t count);
|
|
|
| + ~Path();
|
| +
|
| #if defined(OS_WIN) || defined(USE_X11)
|
| // Creates a NativeRegion from the path. The caller is responsible for freeing
|
| // resources used by this region. This only supports polygon paths.
|
|
|