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

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

Issue 2606023002: [GeometryInterface] parameter was changed to DOMMatrixReadOnly. (Closed)
Patch Set: first commit Created 4 years 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/DOMMatrixReadOnly.cpp
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
index e4c1ed95915423ee26b242a647d136df8fafd511..c58efe77c903f676aebefec8f337332f26d58214 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
@@ -174,6 +174,11 @@ DOMMatrix* DOMMatrixReadOnly::multiply(DOMMatrixInit& other,
return DOMMatrix::create(this)->multiplySelf(other, exceptionState);
}
+DOMMatrix* DOMMatrixReadOnly::multiply(DOMMatrixReadOnly* other,
+ ExceptionState& exceptionState) {
+ return DOMMatrix::create(this)->multiplySelf(other, exceptionState);
+}
+
DOMMatrix* DOMMatrixReadOnly::translate(double tx, double ty, double tz) {
return DOMMatrix::create(this)->translateSelf(tx, ty, tz);
}
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h ('k') | third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698