Index: cc/stream_video_draw_quad.h |
diff --git a/cc/stream_video_draw_quad.h b/cc/stream_video_draw_quad.h |
index 9e6154b8dccbee8b7ef18fa6623d2e83cf69d8f1..897f45d06c5014912c3484041d80fa08f416baec 100644 |
--- a/cc/stream_video_draw_quad.h |
+++ b/cc/stream_video_draw_quad.h |
@@ -8,7 +8,7 @@ |
#include "base/memory/scoped_ptr.h" |
#include "cc/cc_export.h" |
#include "cc/draw_quad.h" |
-#include <public/WebTransformationMatrix.h> |
+#include "ui/gfx/transform.h" |
namespace cc { |
@@ -20,7 +20,7 @@ class CC_EXPORT StreamVideoDrawQuad : public DrawQuad { |
gfx::Rect rect, |
gfx::Rect opaque_rect, |
unsigned texture_id, |
- const WebKit::WebTransformationMatrix& matrix); |
+ const gfx::Transform& matrix); |
void SetAll(const SharedQuadState* shared_quad_state, |
gfx::Rect rect, |
@@ -28,10 +28,10 @@ class CC_EXPORT StreamVideoDrawQuad : public DrawQuad { |
gfx::Rect visible_rect, |
bool needs_blending, |
unsigned texture_id, |
- const WebKit::WebTransformationMatrix& matrix); |
+ const gfx::Transform& matrix); |
unsigned texture_id; |
- WebKit::WebTransformationMatrix matrix; |
+ gfx::Transform matrix; |
static const StreamVideoDrawQuad* MaterialCast(const DrawQuad*); |
private: |