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

Unified Diff: cc/transform_operation.h

Issue 12035029: Finish migrating cc/ from WebKit::WebTransformationMatrix to gfx::Transform (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix nits Created 7 years, 11 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 | « cc/test/geometry_test_utils.cc ('k') | cc/transform_operation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/transform_operation.h
diff --git a/cc/transform_operation.h b/cc/transform_operation.h
index 3a74095588b6acbeba018b7d486af21e1451525d..818914e50eeb6520078da0400264af107acc4c8f 100644
--- a/cc/transform_operation.h
+++ b/cc/transform_operation.h
@@ -5,7 +5,7 @@
#ifndef CC_TRANSFORM_OPERATION_H_
#define CC_TRANSFORM_OPERATION_H
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformationMatrix.h"
+#include "ui/gfx/transform.h"
namespace cc {
@@ -25,7 +25,7 @@ struct TransformOperation {
}
Type type;
- WebKit::WebTransformationMatrix matrix;
+ gfx::Transform matrix;
union {
double perspective_depth;
@@ -55,7 +55,7 @@ struct TransformOperation {
static bool BlendTransformOperations(const TransformOperation* from,
const TransformOperation* to,
double progress,
- WebKit::WebTransformationMatrix& result);
+ gfx::Transform& result);
};
} // namespace cc
« no previous file with comments | « cc/test/geometry_test_utils.cc ('k') | cc/transform_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698