diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-10 17:28:06 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-10 17:28:06 +0000 |
commit | 77030daf904058dbb76ab58525b778eb52150f2e (patch) | |
tree | 049bbaa2c93c16ad38cebb1f57467d919048af79 /gfx/path.h | |
parent | 686b9aa07189787576c5bc1bccc002c8bd4f08af (diff) | |
download | chromium_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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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. |