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

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

Issue 2812833003: Revert of [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: Created 3 years, 8 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 708a07ea802556386d5248df37b6b5190e5ccbab..dcb42ea05326030eeaeea7b38bd39d8cc1737bfc 100644
--- a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
@@ -9,7 +9,6 @@
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/dom/DOMTypedArray.h"
-#include "core/dom/NotShared.h"
#include "platform/heap/Handle.h"
#include "platform/transforms/TransformationMatrix.h"
@@ -29,10 +28,8 @@
static DOMMatrixReadOnly* Create(ExceptionState&);
static DOMMatrixReadOnly* Create(const String&, ExceptionState&);
static DOMMatrixReadOnly* Create(Vector<double>, ExceptionState&);
- static DOMMatrixReadOnly* fromFloat32Array(NotShared<DOMFloat32Array>,
- ExceptionState&);
- static DOMMatrixReadOnly* fromFloat64Array(NotShared<DOMFloat64Array>,
- ExceptionState&);
+ static DOMMatrixReadOnly* fromFloat32Array(DOMFloat32Array*, ExceptionState&);
+ static DOMMatrixReadOnly* fromFloat64Array(DOMFloat64Array*, ExceptionState&);
static DOMMatrixReadOnly* fromMatrix(DOMMatrixInit&, ExceptionState&);
virtual ~DOMMatrixReadOnly();
@@ -92,8 +89,8 @@
DOMPoint* transformPoint(const DOMPointInit&);
- NotShared<DOMFloat32Array> toFloat32Array() const;
- NotShared<DOMFloat64Array> toFloat64Array() const;
+ DOMFloat32Array* toFloat32Array() const;
+ DOMFloat64Array* toFloat64Array() const;
const String toString() const;
« no previous file with comments | « third_party/WebKit/Source/core/geometry/DOMMatrix.cpp ('k') | third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698