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

Unified Diff: Source/platform/graphics/Path.cpp

Issue 1185383002: [SVG] Re-enable experimental PathOpsSVGClipping support (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: expectations Created 5 years, 6 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 | « Source/platform/graphics/Path.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/Path.cpp
diff --git a/Source/platform/graphics/Path.cpp b/Source/platform/graphics/Path.cpp
index e008c93c8637c264ef5f5627c5750ac378c0a226..f88cc53d3ffba8d47cd445043fcf1ebb86f0eb1f 100644
--- a/Source/platform/graphics/Path.cpp
+++ b/Source/platform/graphics/Path.cpp
@@ -61,6 +61,12 @@ Path& Path::operator=(const Path& other)
return *this;
}
+Path& Path::operator=(const SkPath& other)
+{
+ m_path = other;
+ return *this;
+}
+
bool Path::operator==(const Path& other) const
{
return m_path == other.m_path;
« no previous file with comments | « Source/platform/graphics/Path.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698