summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/transform_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/gfx/transform_util.h')
-rw-r--r--chromium/ui/gfx/transform_util.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromium/ui/gfx/transform_util.h b/chromium/ui/gfx/transform_util.h
index b6da7b0782d..be5ba4c03ce 100644
--- a/chromium/ui/gfx/transform_util.h
+++ b/chromium/ui/gfx/transform_util.h
@@ -5,7 +5,7 @@
#ifndef UI_GFX_TRANSFORM_UTIL_H_
#define UI_GFX_TRANSFORM_UTIL_H_
-#include "ui/base/ui_export.h"
+#include "ui/gfx/gfx_export.h"
#include "ui/gfx/transform.h"
namespace gfx {
@@ -22,11 +22,11 @@ struct UI_EXPORT DecomposedTransform {
// if used with Compose below, will produce the identity transform.
DecomposedTransform();
- double translate[3];
- double scale[3];
- double skew[3];
- double perspective[4];
- double quaternion[4];
+ SkMScalar translate[3];
+ SkMScalar scale[3];
+ SkMScalar skew[3];
+ SkMScalar perspective[4];
+ SkMScalar quaternion[4];
// Copy and assign are allowed.
};
@@ -38,7 +38,7 @@ struct UI_EXPORT DecomposedTransform {
UI_EXPORT bool BlendDecomposedTransforms(DecomposedTransform* out,
const DecomposedTransform& to,
const DecomposedTransform& from,
- double progress);
+ SkMScalar progress);
// Decomposes this transform into its translation, scale, skew, perspective,
// and rotation components following the routines detailed in this spec: