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

Unified Diff: Source/core/svg/SVGTransform.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/SVGStringList.idl ('k') | Source/core/svg/SVGTransformList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTransform.idl
diff --git a/Source/core/svg/SVGTransform.idl b/Source/core/svg/SVGTransform.idl
index 99d7fc278930274a210eae960cd44aa752873434..96c0058dd4cd43a6552aca3f66b811acd53eba71 100644
--- a/Source/core/svg/SVGTransform.idl
+++ b/Source/core/svg/SVGTransform.idl
@@ -19,7 +19,9 @@
* Boston, MA 02110-1301, USA.
*/
-interface SVGTransform {
+[
+ StrictTypeChecking,
+] interface SVGTransform {
// Transform Types
const unsigned short SVG_TRANSFORM_UNKNOWN = 0;
const unsigned short SVG_TRANSFORM_MATRIX = 1;
@@ -33,11 +35,11 @@ interface SVGTransform {
[ImplementedAs=svgMatrix] readonly attribute SVGMatrix matrix;
readonly attribute float angle;
- [StrictTypeChecking] void setMatrix(SVGMatrix matrix);
- [StrictTypeChecking] void setTranslate(float tx, float ty);
- [StrictTypeChecking] void setScale(float sx, float sy);
- [StrictTypeChecking] void setRotate(float angle, float cx, float cy);
- [StrictTypeChecking] void setSkewX(float angle);
- [StrictTypeChecking] void setSkewY(float angle);
+ void setMatrix(SVGMatrix matrix);
+ void setTranslate(float tx, float ty);
+ void setScale(float sx, float sy);
+ void setRotate(float angle, float cx, float cy);
+ void setSkewX(float angle);
+ void setSkewY(float angle);
};
« no previous file with comments | « Source/core/svg/SVGStringList.idl ('k') | Source/core/svg/SVGTransformList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698