diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 01:33:16 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 01:33:16 +0000 |
commit | 403160b3ec9c247839fb2a4061eb0625f169e5cf (patch) | |
tree | e5a134c3604b283a5ce200c6a6a04a4eb61e6fc8 /skia | |
parent | a916f154ca1fb88d3e959d19c491f69861d72c3d (diff) | |
download | chromium_src-403160b3ec9c247839fb2a4061eb0625f169e5cf.zip chromium_src-403160b3ec9c247839fb2a4061eb0625f169e5cf.tar.gz chromium_src-403160b3ec9c247839fb2a4061eb0625f169e5cf.tar.bz2 |
skia/ext: Add SK_API to a function used from a test
BUG=90078
TEST=none
Review URL: http://codereview.chromium.org/9699078
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127068 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/bitmap_platform_device_mac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/ext/bitmap_platform_device_mac.h b/skia/ext/bitmap_platform_device_mac.h index f57a36e..a9634ad 100644 --- a/skia/ext/bitmap_platform_device_mac.h +++ b/skia/ext/bitmap_platform_device_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. @@ -26,7 +26,7 @@ namespace skia { // For us, that other bitmap will become invalid as soon as the device becomes // invalid, which may lead to subtle bugs. Therefore, DO NOT ASSIGN THE // DEVICE'S PIXEL DATA TO ANOTHER BITMAP, make sure you copy instead. -class BitmapPlatformDevice : public PlatformDevice, public SkDevice { +class SK_API BitmapPlatformDevice : public PlatformDevice, public SkDevice { public: // |context| may be NULL. static BitmapPlatformDevice* Create(CGContextRef context, |