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

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

Issue 141523002: Add null-correctness checking to [StrictTypeChecking] methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/svg/SVGTransform.idl
diff --git a/Source/core/svg/SVGTransform.idl b/Source/core/svg/SVGTransform.idl
index 99d7fc278930274a210eae960cd44aa752873434..8abaeb2f990d696704dbdee70c1f79df19758e1c 100644
--- a/Source/core/svg/SVGTransform.idl
+++ b/Source/core/svg/SVGTransform.idl
@@ -33,7 +33,7 @@ interface SVGTransform {
[ImplementedAs=svgMatrix] readonly attribute SVGMatrix matrix;
readonly attribute float angle;
- [StrictTypeChecking] void setMatrix(SVGMatrix matrix);
+ [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);

Powered by Google App Engine
This is Rietveld 408576698