aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-25 15:44:37 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-25 15:44:37 +0000
commiteddb02c82d6e35a05f84798b23aac48a446c1aa6 (patch)
tree5ea25a3bb2e3234b108e83bb9b75ba8a913648ae
parent02352d14d4d2dc2e35d62f30674bf126eef26c26 (diff)
Adding SkDeferredCanvas::NoticifationClient to the exported API.
R=reed@android.com, robertphillips@google.com, reed, robertphillips BUG=1861 Author: schenney@chromium.org Review URL: https://codereview.chromium.org/83383007 git-svn-id: http://skia.googlecode.com/svn/trunk@12380 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--include/core/SkBitmap.h2
-rw-r--r--include/utils/SkDeferredCanvas.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h
index afce3a7278..b58925c9db 100644
--- a/include/core/SkBitmap.h
+++ b/include/core/SkBitmap.h
@@ -38,7 +38,7 @@ class GrTexture;
*/
class SK_API SkBitmap {
public:
- class Allocator;
+ class SK_API Allocator;
enum Config {
kNo_Config, //!< bitmap has not been configured
diff --git a/include/utils/SkDeferredCanvas.h b/include/utils/SkDeferredCanvas.h
index c0613ed544..d621785172 100644
--- a/include/utils/SkDeferredCanvas.h
+++ b/include/utils/SkDeferredCanvas.h
@@ -25,7 +25,7 @@ class SkSurface;
*/
class SK_API SkDeferredCanvas : public SkCanvas {
public:
- class NotificationClient;
+ class SK_API NotificationClient;
/** Construct a canvas with the specified surface to draw into.
This factory must be used for newImageSnapshot to work.