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

Unified Diff: Source/core/svg/SVGMatrix.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/SVGMatrix.idl
diff --git a/Source/core/svg/SVGMatrix.idl b/Source/core/svg/SVGMatrix.idl
index af560290c013ee4ba1103205e436da67e63a28e4..f7940add9dd3a2900aae92d5b9b7b99a30d43bd8 100644
--- a/Source/core/svg/SVGMatrix.idl
+++ b/Source/core/svg/SVGMatrix.idl
@@ -32,7 +32,7 @@
[StrictTypeChecking] attribute double e;
[StrictTypeChecking] attribute double f;
- [StrictTypeChecking] SVGMatrix multiply(SVGMatrix secondMatrix);
+ [StrictTypeChecking] SVGMatrix multiply(SVGMatrix? secondMatrix);
kouhei (in TOK) 2014/01/17 04:28:45 No ? here.
[RaisesException] SVGMatrix inverse();
[Immutable, StrictTypeChecking] SVGMatrix translate(float x, float y);
[Immutable, StrictTypeChecking] SVGMatrix scale(float scaleFactor);

Powered by Google App Engine
This is Rietveld 408576698