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

Unified Diff: Source/core/svg/SVGPointList.idl

Issue 146423002: Move [StrictTypeChecking] to interface (from members), where possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 11 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/svg/SVGPoint.idl ('k') | Source/core/svg/SVGPreserveAspectRatio.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPointList.idl
diff --git a/Source/core/svg/SVGPointList.idl b/Source/core/svg/SVGPointList.idl
index f31ea737d63d80a325d33f00149c4e5ab05b49a9..51aba12067587d56ded8762d260adccd387168c1 100644
--- a/Source/core/svg/SVGPointList.idl
+++ b/Source/core/svg/SVGPointList.idl
@@ -25,16 +25,16 @@
[
ImplementedAs=SVGPointListTearOff,
- SetWrapperReferenceTo(SVGElement contextElement)
+ SetWrapperReferenceTo(SVGElement contextElement),
+ StrictTypeChecking,
] interface SVGPointList {
readonly attribute unsigned long numberOfItems;
[RaisesException] void clear();
- [StrictTypeChecking, RaisesException] SVGPoint initialize(SVGPoint item);
- [StrictTypeChecking, RaisesException] SVGPoint getItem(unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint removeItem(unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint appendItem(SVGPoint item);
+ [RaisesException] SVGPoint initialize(SVGPoint item);
+ [RaisesException] SVGPoint getItem(unsigned long index);
+ [RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index);
+ [RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index);
+ [RaisesException] SVGPoint removeItem(unsigned long index);
+ [RaisesException] SVGPoint appendItem(SVGPoint item);
};
-
« no previous file with comments | « Source/core/svg/SVGPoint.idl ('k') | Source/core/svg/SVGPreserveAspectRatio.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698