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

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

Issue 2516973002: [GeometryInferface] add Constructor(DOMString transformList). (Closed)
Patch Set: update test message. 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/DOMMatrix.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrix.h b/third_party/WebKit/Source/core/dom/DOMMatrix.h
index d9913c1dd17d8d6aefd1014383d3008a330a2df9..1e29b13cb48107b95ca5a5b7e8f53b9bc6f7bf8c 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.h
@@ -19,6 +19,7 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
static DOMMatrix* create(DOMMatrixReadOnly*,
ExceptionState& = ASSERT_NO_EXCEPTION);
static DOMMatrix* create(const SkMatrix44&, ExceptionState&);
+ static DOMMatrix* create(const String&, ExceptionState&);
static DOMMatrix* create(Vector<double>, ExceptionState&);
static DOMMatrix* fromFloat32Array(DOMFloat32Array*, ExceptionState&);
static DOMMatrix* fromFloat64Array(DOMFloat64Array*, ExceptionState&);
@@ -108,6 +109,7 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
private:
DOMMatrix(const TransformationMatrix&, bool is2D = true);
+ DOMMatrix(const String&, ExceptionState&);
template <typename T>
DOMMatrix(T sequence, int size);

Powered by Google App Engine
This is Rietveld 408576698