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

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

Issue 2868953002: Stop accepting string constructor of DOMMatrix on workers (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..05f7f339612b76a6958e9626a92c69e95a0b666c 100644
--- a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
@@ -27,8 +27,9 @@ class CORE_EXPORT DOMMatrixReadOnly
DEFINE_WRAPPERTYPEINFO();
public:
- static DOMMatrixReadOnly* Create(ExceptionState&);
- static DOMMatrixReadOnly* Create(StringOrUnrestrictedDoubleSequence&,
+ static DOMMatrixReadOnly* Create(ExecutionContext*, ExceptionState&);
+ static DOMMatrixReadOnly* Create(ExecutionContext*,
+ StringOrUnrestrictedDoubleSequence&,
ExceptionState&);
static DOMMatrixReadOnly* fromFloat32Array(NotShared<DOMFloat32Array>,
ExceptionState&);
« no previous file with comments | « third_party/WebKit/Source/core/geometry/DOMMatrix.idl ('k') | third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698