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

Unified Diff: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.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/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
index 639ade8bf40553052e5ef857f75fa148e8fee5d4..903488806780746e7a0df92babf18354ebd62d2e 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
@@ -26,6 +26,7 @@ class CORE_EXPORT DOMMatrixReadOnly
public:
static DOMMatrixReadOnly* create(ExceptionState&);
+ static DOMMatrixReadOnly* create(const String&, ExceptionState&);
static DOMMatrixReadOnly* create(Vector<double>, ExceptionState&);
static DOMMatrixReadOnly* fromFloat32Array(DOMFloat32Array*, ExceptionState&);
static DOMMatrixReadOnly* fromFloat64Array(DOMFloat64Array*, ExceptionState&);
@@ -101,6 +102,7 @@ class CORE_EXPORT DOMMatrixReadOnly
protected:
DOMMatrixReadOnly() {}
+ DOMMatrixReadOnly(const String&, ExceptionState&);
DOMMatrixReadOnly(const TransformationMatrix&, bool is2D = true);
template <typename T>
@@ -122,6 +124,8 @@ class CORE_EXPORT DOMMatrixReadOnly
}
}
+ void setMatrixValueInternal(const String&, ExceptionState&);
+
static bool validateAndFixup(DOMMatrixInit&, ExceptionState&);
// TransformationMatrix needs to be 16-byte aligned. PartitionAlloc
// supports 16-byte alignment but Oilpan doesn't. So we use an std::unique_ptr

Powered by Google App Engine
This is Rietveld 408576698