diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-17 19:39:42 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-17 19:39:42 +0000 |
commit | ea47b6a802638fa18df618d5ba71dc4b5b3b4c48 (patch) | |
tree | 6c1cc5a5aac4c5c8dd81fbee7b2f87652ab1b823 /ui/gfx/interpolated_transform.h | |
parent | 48c18de8a9e3a35f5a829e7fb01e76d80e5b596e (diff) | |
download | chromium_src-ea47b6a802638fa18df618d5ba71dc4b5b3b4c48.zip chromium_src-ea47b6a802638fa18df618d5ba71dc4b5b3b4c48.tar.gz chromium_src-ea47b6a802638fa18df618d5ba71dc4b5b3b4c48.tar.bz2 |
Introduce ui.dll / libui.so for the component build.
R=ben@chromium.org
Review URL: http://codereview.chromium.org/7328011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92819 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/interpolated_transform.h')
-rw-r--r-- | ui/gfx/interpolated_transform.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/gfx/interpolated_transform.h b/ui/gfx/interpolated_transform.h index ce78224..dfd9809 100644 --- a/ui/gfx/interpolated_transform.h +++ b/ui/gfx/interpolated_transform.h @@ -23,7 +23,7 @@ namespace ui { // scale from 0.3 to 1 from between times 0.75 and 1. // /////////////////////////////////////////////////////////////////////////////// -class InterpolatedTransform { +class UI_API InterpolatedTransform { public: InterpolatedTransform(); // The interpolated transform varies only when t in (start_time, end_time). @@ -72,7 +72,7 @@ class InterpolatedTransform { // Represents an animated rotation. // /////////////////////////////////////////////////////////////////////////////// -class InterpolatedRotation : public InterpolatedTransform { +class UI_API InterpolatedRotation : public InterpolatedTransform { public: InterpolatedRotation(float start_degrees, float end_degrees); InterpolatedRotation(float start_degrees, @@ -97,7 +97,7 @@ class InterpolatedRotation : public InterpolatedTransform { // Represents an animated scale. // /////////////////////////////////////////////////////////////////////////////// -class InterpolatedScale : public InterpolatedTransform { +class UI_API InterpolatedScale : public InterpolatedTransform { public: InterpolatedScale(float start_scale, float end_scale); InterpolatedScale(float start_scale, @@ -116,7 +116,7 @@ class InterpolatedScale : public InterpolatedTransform { DISALLOW_COPY_AND_ASSIGN(InterpolatedScale); }; -class InterpolatedTranslation : public InterpolatedTransform { +class UI_API InterpolatedTranslation : public InterpolatedTransform { public: InterpolatedTranslation(const gfx::Point& start_pos, const gfx::Point& end_pos); @@ -145,7 +145,7 @@ class InterpolatedTranslation : public InterpolatedTransform { // See InterpolatedTransformAboutPivot for an example of its usage. // /////////////////////////////////////////////////////////////////////////////// -class InterpolatedConstantTransform : public InterpolatedTransform { +class UI_API InterpolatedConstantTransform : public InterpolatedTransform { public: InterpolatedConstantTransform(const ui::Transform& transform); virtual ~InterpolatedConstantTransform(); @@ -167,7 +167,7 @@ class InterpolatedConstantTransform : public InterpolatedTransform { // P * T * P^-1 where P is a constant transform to the new origin. // /////////////////////////////////////////////////////////////////////////////// -class InterpolatedTransformAboutPivot : public InterpolatedTransform { +class UI_API InterpolatedTransformAboutPivot : public InterpolatedTransform { public: // Takes ownership of the passed transform. InterpolatedTransformAboutPivot(const gfx::Point& pivot, |