Index: include/core/SkRWBuffer.h |
diff --git a/src/core/SkRWBuffer.h b/include/core/SkRWBuffer.h |
similarity index 97% |
rename from src/core/SkRWBuffer.h |
rename to include/core/SkRWBuffer.h |
index 9d88a60203f6842c5ec213acd1640abe4f7d1a0b..452e182d940f1b544151aae8dbc914b321a2f579 100644 |
--- a/src/core/SkRWBuffer.h |
+++ b/include/core/SkRWBuffer.h |
@@ -19,7 +19,7 @@ class SkStreamAsset; |
* Contains a read-only, thread-sharable block of memory. To access the memory, the caller must |
* instantiate a local iterator, as the memory is stored in 1 or more contiguous blocks. |
*/ |
-class SkROBuffer : public SkRefCnt { |
+class SK_API SkROBuffer : public SkRefCnt { |
public: |
/** |
* Return the logical length of the data owned/shared by this buffer. It may be stored in |
@@ -70,7 +70,7 @@ private: |
* The growth is done such that at any time, a RBuffer or StreamAsset can be snapped off, which |
* can see the previously stored bytes, but which will be unaware of any future writes. |
*/ |
-class SkRWBuffer { |
+class SK_API SkRWBuffer { |
public: |
SkRWBuffer(size_t initialCapacity = 0); |
~SkRWBuffer(); |