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

Unified Diff: third_party/WebKit/Source/core/dom/DOMMatrix.h

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
Index: third_party/WebKit/Source/core/dom/DOMMatrix.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrix.h b/third_party/WebKit/Source/core/dom/DOMMatrix.h
index c6265531acba984d99318eb40c48afa746818f7f..ae004ea0b2e0f9d10949c432f96a48b38c9b8a67 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.h
@@ -80,7 +80,7 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
DOMMatrix* multiplySelf(DOMMatrixInit&, ExceptionState&);
DOMMatrix* preMultiplySelf(DOMMatrixInit&, ExceptionState&);
- DOMMatrix* translateSelf(double tx, double ty, double tz = 0);
+ DOMMatrix* translateSelf(double tx = 0, double ty = 0, double tz = 0);
DOMMatrix* scaleSelf(double sx = 1);
DOMMatrix* scaleSelf(double sx,
double sy,

Powered by Google App Engine
This is Rietveld 408576698