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

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: Implement toString() funtion in DOMMatrixReadOnly. 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..9b652af29107837b6fbcd6f0bb1a6e038b59b305 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 String toString() const;
+
const TransformationMatrix& matrix() const { return *m_matrix; }
DEFINE_INLINE_TRACE() { }

Powered by Google App Engine
This is Rietveld 408576698