diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 20:45:26 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 20:45:26 +0000 |
commit | 0dbe4a01a07d4279b14056d1bbe1c7a1c2009496 (patch) | |
tree | 9910ecc74e968cca42346021c5c2c06c68384f3f /skia | |
parent | 35eff4fd909aa332e1173504cc9a662625c082ff (diff) | |
download | chromium_src-0dbe4a01a07d4279b14056d1bbe1c7a1c2009496.zip chromium_src-0dbe4a01a07d4279b14056d1bbe1c7a1c2009496.tar.gz chromium_src-0dbe4a01a07d4279b14056d1bbe1c7a1c2009496.tar.bz2 |
Add _EXPORT macros to skia/ext.
SkMatrixToCGAffineTransform and SkiaBitLocker are both used by WebKit.
BUG=90078
TEST=none
Review URL: http://codereview.chromium.org/9648024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125892 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/skia_utils_mac.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/ext/skia_utils_mac.h b/skia/ext/skia_utils_mac.h index bdf6c1f..8d11165 100644 --- a/skia/ext/skia_utils_mac.h +++ b/skia/ext/skia_utils_mac.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -48,7 +48,7 @@ inline const SkPoint& CGPointToSkPoint(const CGPoint& point) { } // Matrix converters. -CGAffineTransform SkMatrixToCGAffineTransform(const SkMatrix& matrix); +SK_API CGAffineTransform SkMatrixToCGAffineTransform(const SkMatrix& matrix); // Rectangle converters. SkRect CGRectToSkRect(const CGRect& rect); @@ -94,7 +94,7 @@ SK_API NSImage* SkBitmapsToNSImage(const std::vector<const SkBitmap*>& bitmaps); SK_API SkBitmap AppplicationIconAtSize(int size); // Converts a SkCanvas temporarily to a CGContext -class SkiaBitLocker { +class SK_API SkiaBitLocker { public: explicit SkiaBitLocker(SkCanvas* canvas); ~SkiaBitLocker(); |