Add SK_API to SkPixelRef and TextureCacheEntry.

Review URL:  http://codereview.appspot.com/5649044/



git-svn-id: http://skia.googlecode.com/svn/trunk@3158 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
senorblanco@chromium.org 2012-02-09 16:07:08 +00:00
parent 6e85937606
commit dfad3832cb
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class SkGpuTexture;
This class can be shared/accessed between multiple threads.
*/
class SkPixelRef : public SkRefCnt {
class SK_API SkPixelRef : public SkRefCnt {
public:
explicit SkPixelRef(SkBaseMutex* mutex = NULL);

View File

@ -87,7 +87,7 @@ public:
* Token that refers to an entry in the texture cache. Returned by
* functions that lock textures. Passed to unlockTexture.
*/
class TextureCacheEntry {
class SK_API TextureCacheEntry {
public:
TextureCacheEntry() : fEntry(NULL) {}
TextureCacheEntry(const TextureCacheEntry& e) : fEntry(e.fEntry) {}