diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 20:58:29 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 20:58:29 +0000 |
commit | 5036f187c5431c1afc5bac442e1d74390d7a3fa0 (patch) | |
tree | af465cf27c50860ca7773876ac7bf08b6b653875 /views/painter.h | |
parent | 26c740c8fb36d3e59200cfab668eb9c5f7539d11 (diff) | |
download | chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.zip chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.tar.gz chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.tar.bz2 |
Rename VIEWS_API to VIEWS_EXPORT.
R=rvargas@chromium.org
Review URL: http://codereview.chromium.org/7550038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/painter.h')
-rw-r--r-- | views/painter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/painter.h b/views/painter.h index 45cab2b2..50c950b 100644 --- a/views/painter.h +++ b/views/painter.h @@ -8,7 +8,7 @@ #include "base/basictypes.h" #include "third_party/skia/include/core/SkColor.h" -#include "views/views_api.h" +#include "views/views_export.h" namespace gfx { class Canvas; @@ -21,7 +21,7 @@ namespace views { // Painter, as the name implies, is responsible for painting in a particular // region. Think of Painter as a Border or Background that can be painted // in any region of a View. -class VIEWS_API Painter { +class VIEWS_EXPORT Painter { public: // A convenience method for painting a Painter in a particular region. // This translates the canvas to x/y and paints the painter. @@ -52,7 +52,7 @@ class VIEWS_API Painter { // left and right images are drawn to size at the left/right edges of the // region. The center is tiled in the remaining space. All images must have the // same height. -class VIEWS_API HorizontalPainter : public Painter { +class VIEWS_EXPORT HorizontalPainter : public Painter { public: // Constructs a new HorizontalPainter loading the specified image names. // The images must be in the order left, right and center. |