summaryrefslogtreecommitdiffstats
path: root/gfx/path.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-10 17:28:06 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-10 17:28:06 +0000
commit77030daf904058dbb76ab58525b778eb52150f2e (patch)
tree049bbaa2c93c16ad38cebb1f57467d919048af79 /gfx/path.h
parent686b9aa07189787576c5bc1bccc002c8bd4f08af (diff)
downloadchromium_src-77030daf904058dbb76ab58525b778eb52150f2e.zip
chromium_src-77030daf904058dbb76ab58525b778eb52150f2e.tar.gz
chromium_src-77030daf904058dbb76ab58525b778eb52150f2e.tar.bz2
FBTF: Minor gfx/ header cleanup.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3034039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55577 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx/path.h')
-rw-r--r--gfx/path.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gfx/path.h b/gfx/path.h
index cdc11c8..36fed4a 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.