Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: gfx/path.h

Issue 3034039: FBTF: Minor gfx/ header cleanup. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: win fix Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gfx/canvas_skia.cc ('k') | gfx/path.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « gfx/canvas_skia.cc ('k') | gfx/path.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698