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

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

Issue 2273663002: Implement toString() funtion in DOMMatrixReadOnly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: \ Created 4 years, 4 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: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
index c63802515cc07545e18a1bbfeb6f5d2b11ed0548..5bd3808d9666a94654860aae924fba51adc8e81e 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
@@ -61,6 +61,8 @@ public:
DOMFloat32Array* toFloat32Array() const;
DOMFloat64Array* toFloat64Array() const;
+ const AtomicString toString() const;
pdr. 2016/08/23 18:24:30 Can you use String here instead of AtomicString? I
Hwanseung Lee 2016/08/23 21:35:01 it was changed to String instead of AtomicString.
+
const TransformationMatrix& matrix() const { return *m_matrix; }
DEFINE_INLINE_TRACE() { }

Powered by Google App Engine
This is Rietveld 408576698