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

Unified Diff: Source/core/dom/DOMTypedArray.h

Issue 1017183003: Make DOMTypedArray exported. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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: Source/core/dom/DOMTypedArray.h
diff --git a/Source/core/dom/DOMTypedArray.h b/Source/core/dom/DOMTypedArray.h
index 42cad9b50986b319e7750023d119eeb31e072ec4..98153920460184d7044fadbb38da385525ea7c2f 100644
--- a/Source/core/dom/DOMTypedArray.h
+++ b/Source/core/dom/DOMTypedArray.h
@@ -6,6 +6,7 @@
#define DOMTypedArray_h
#include "bindings/core/v8/ScriptWrappable.h"
+#include "core/CoreExport.h"
#include "core/dom/DOMArrayBufferView.h"
#include "wtf/Float32Array.h"
#include "wtf/Float64Array.h"
@@ -21,7 +22,7 @@
namespace blink {
template<typename WTFTypedArray, typename V8TypedArray>
-class DOMTypedArray final : public DOMArrayBufferView {
+class CORE_EXPORT DOMTypedArray final : public DOMArrayBufferView {
DEFINE_WRAPPERTYPEINFO();
typedef DOMTypedArray<WTFTypedArray, V8TypedArray> ThisType;
public:

Powered by Google App Engine
This is Rietveld 408576698