| 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
|
|
|