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

Unified Diff: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl

Issue 2461303003: [GeometryInterface] parameter of translate*() was changed. (Closed)
Patch Set: add test. Created 4 years, 1 month 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/dom/DOMMatrixReadOnly.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl
index 8833614283bea410abf92e2b5df7212f7bbeb825..56e4b296445e33e403e422ec5060de55284b9d8f 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl
@@ -48,8 +48,8 @@
// TODO(zino): Should implement transformPoint() method (See: crbug.com/645885)
// TODO(zino): Should remove scaleNonUniform() method (See: crbug.com/645887)
// Immutable transform methods
- DOMMatrix translate(unrestricted double tx,
- unrestricted double ty,
+ DOMMatrix translate(optional unrestricted double tx = 0,
+ optional unrestricted double ty = 0,
optional unrestricted double tz = 0);
DOMMatrix scale(optional unrestricted double scaleX = 1,
optional unrestricted double scaleY,
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698