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

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

Issue 2516973002: [GeometryInferface] add Constructor(DOMString transformList). (Closed)
Patch Set: [GeometryInferface] add Constructor(DOMString transformList). 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..752f2fb1ef5cd3f9920d369b64132224cd28d3b2 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&);

Powered by Google App Engine
This is Rietveld 408576698