summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 21:04:32 +0000
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 21:04:32 +0000
commit0e69b9ce679b69d9e870c993ecddc2c0cd06e496 (patch)
tree2d0f33a8021f611ba636bc26ac14b0bf593b2ffe
parent481585ac9667f33786665fc0d3550574cf1a7c80 (diff)
downloadinclude-0e69b9ce679b69d9e870c993ecddc2c0cd06e496.tar.gz
add SK_API to include/record
Failed builders https://codereview.chromium.org/225023031/ at PS 24 look like they're failing because we're not exposing these symbols when Skia's a dynamic library. BUG=skia:2378 R=reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/253883003 git-svn-id: http://skia.googlecode.com/svn/trunk/include@14425 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--record/SkRecording.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/record/SkRecording.h b/record/SkRecording.h
index 2716ea6..a4e8809 100644
--- a/record/SkRecording.h
+++ b/record/SkRecording.h
@@ -36,7 +36,7 @@ namespace EXPERIMENTAL {
* SkPlayback is thread safe; SkRecording is not.
*/
-class SkPlayback : SkNoncopyable {
+class SK_API SkPlayback : SkNoncopyable {
public:
// Remember, if you've got an SkPlayback*, you probably own it. Don't forget to delete it!
~SkPlayback();
@@ -52,7 +52,7 @@ private:
friend class SkRecording;
};
-class SkRecording : SkNoncopyable {
+class SK_API SkRecording : SkNoncopyable {
public:
SkRecording(int width, int height);
~SkRecording();