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

Unified Diff: include/core/SkBBHFactory.h

Issue 243333008: SK_API-export SkBBHFactory & friends. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkBBHFactory.h
diff --git a/include/core/SkBBHFactory.h b/include/core/SkBBHFactory.h
index bd85d94418ac73a08f285fa2097b7abf60a9ef8b..4c0384422117b0635d11e4428bcdd33e9412d60b 100644
--- a/include/core/SkBBHFactory.h
+++ b/include/core/SkBBHFactory.h
@@ -13,7 +13,7 @@
class SkBBoxHierarchy;
-class SkBBHFactory {
+class SK_API SkBBHFactory {
public:
/**
* Allocate a new SkBBoxHierarchy. Return NULL on failure.
@@ -22,7 +22,7 @@ public:
virtual ~SkBBHFactory() {};
};
-class SkQuadTreeFactory : public SkBBHFactory {
+class SK_API SkQuadTreeFactory : public SkBBHFactory {
public:
virtual SkBBoxHierarchy* operator()(int width, int height) const SK_OVERRIDE;
private:
@@ -30,14 +30,14 @@ private:
};
-class SkRTreeFactory : public SkBBHFactory {
+class SK_API SkRTreeFactory : public SkBBHFactory {
public:
virtual SkBBoxHierarchy* operator()(int width, int height) const SK_OVERRIDE;
private:
typedef SkBBHFactory INHERITED;
};
-class SkTileGridFactory : public SkBBHFactory {
+class SK_API SkTileGridFactory : public SkBBHFactory {
public:
struct TileGridInfo {
/** Tile placement interval */
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698