add SK_API to include/record
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 28 Apr 2014 21:04:32 +0000 (21:04 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 28 Apr 2014 21:04:32 +0000 (21:04 +0000)
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@14425 2bbb7eff-a529-9590-31e7-b0007b416f81

include/record/SkRecording.h

index 2716ea6..a4e8809 100644 (file)
@@ -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();