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

Unified Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.idl

Issue 1505953008: Split SVGSVGElement.create* functions from SVG1DOM counter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-disable-svg1dom-runtime
Patch Set: Rebase Created 5 years 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 | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGSVGElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.idl b/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
index e1b84b9008b2500e42248eb8ae60b9c5195d20ff..cd12eea94fe45f2fac2725db042a5d8b7ae983a3 100644
--- a/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
@@ -55,15 +55,15 @@ interface SVGSVGElement : SVGGraphicsElement {
boolean checkIntersection(SVGElement element, SVGRect rect);
boolean checkEnclosure(SVGElement element, SVGRect rect);
void deselectAll();
- [MeasureAs=SVG1DOM] SVGNumber createSVGNumber();
- [MeasureAs=SVG1DOM] SVGLength createSVGLength();
- [MeasureAs=SVG1DOM] SVGAngle createSVGAngle();
+ [Measure] SVGNumber createSVGNumber();
+ [Measure] SVGLength createSVGLength();
+ [Measure] SVGAngle createSVGAngle();
// TODO(philipj): SVGPoint/Matrix/Rect should be DOMPoint/Matrix/Rect.
- [MeasureAs=SVG1DOM] SVGPoint createSVGPoint();
- [MeasureAs=SVG1DOM] SVGMatrix createSVGMatrix();
- [MeasureAs=SVG1DOM] SVGRect createSVGRect();
- [MeasureAs=SVG1DOM] SVGTransform createSVGTransform();
- [MeasureAs=SVG1DOM] SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
+ [Measure] SVGPoint createSVGPoint();
+ [Measure] SVGMatrix createSVGMatrix();
+ [Measure] SVGRect createSVGRect();
+ [Measure] SVGTransform createSVGTransform();
+ [Measure] SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
// TODO(philipj): The following was part of SVG 1.1:
// http://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSVGElement
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698