Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Unified Diff: ui/gfx/interpolated_transform.h

Issue 7328011: Introduce ui.dll / libui.so for the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/insets.h ('k') | ui/gfx/native_theme.h » ('j') | ui/ui.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/interpolated_transform.h
===================================================================
--- ui/gfx/interpolated_transform.h (revision 92815)
+++ ui/gfx/interpolated_transform.h (working copy)
@@ -23,7 +23,7 @@
// 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 @@
// 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 @@
// 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 @@
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 @@
// 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 @@
// 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,
« no previous file with comments | « ui/gfx/insets.h ('k') | ui/gfx/native_theme.h » ('j') | ui/ui.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698