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

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

Issue 2874203003: Implement serialization/deserialization of geometry interfaces (Closed)
Patch Set: x Created 3 years, 7 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/geometry/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
index 10ae70a0e5f1903f4e0e0261f0ab12e1cac95a3b..7516be2912bb8caafa3ebc3f760b41c7d548c473 100644
--- a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
@@ -35,6 +35,7 @@ class CORE_EXPORT DOMMatrixReadOnly
static DOMMatrixReadOnly* fromFloat64Array(NotShared<DOMFloat64Array>,
ExceptionState&);
static DOMMatrixReadOnly* fromMatrix(DOMMatrixInit&, ExceptionState&);
+ static DOMMatrixReadOnly* fromMatrixForSerialization(DOMMatrixInit&);
virtual ~DOMMatrixReadOnly();
double a() const { return matrix_->M11(); }

Powered by Google App Engine
This is Rietveld 408576698