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

Unified Diff: Source/core/html/canvas/Path2D.idl

Issue 227583006: Enable Path2D object and some path APIs by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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/core/html/canvas/CanvasRenderingContext2D.idl ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/Path2D.idl
diff --git a/Source/core/html/canvas/Path2D.idl b/Source/core/html/canvas/Path2D.idl
index 78317387ead19e6d34fd8eb4abead6e41a94da45..85dfd711fb909f6ece8befcacf930bd4e91becc7 100644
--- a/Source/core/html/canvas/Path2D.idl
+++ b/Source/core/html/canvas/Path2D.idl
@@ -27,13 +27,13 @@
*/
[
- RuntimeEnabled=ExperimentalCanvasFeatures,
+ RuntimeEnabled=Path2D,
Constructor,
Constructor(Path2D path),
Constructor(DOMString text)
] interface Path2D {
- [RaisesException] void addPath(Path2D? path, optional SVGMatrix? transform);
+ [RuntimeEnabled=ExperimentalCanvasFeatures, RaisesException] void addPath(Path2D? path, optional SVGMatrix? transform);
};
Path2D implements CanvasPathMethods;
« no previous file with comments | « Source/core/html/canvas/CanvasRenderingContext2D.idl ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698