diff options
Diffstat (limited to 'cc/render_pass.cc')
-rw-r--r-- | cc/render_pass.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cc/render_pass.cc b/cc/render_pass.cc index 0a8dc48..2d49907 100644 --- a/cc/render_pass.cc +++ b/cc/render_pass.cc @@ -6,8 +6,6 @@ #include "third_party/skia/include/core/SkImageFilter.h" -using WebKit::WebTransformationMatrix; - namespace cc { scoped_ptr<RenderPass> RenderPass::Create() { @@ -44,7 +42,7 @@ scoped_ptr<RenderPass> RenderPass::Copy(Id new_id) const { void RenderPass::SetNew(Id id, gfx::Rect output_rect, gfx::RectF damage_rect, - const WebKit::WebTransformationMatrix& transform_to_root_target) { + const gfx::Transform& transform_to_root_target) { DCHECK_GT(id.layer_id, 0); DCHECK_GE(id.index, 0); @@ -60,7 +58,7 @@ void RenderPass::SetNew(Id id, void RenderPass::SetAll(Id id, gfx::Rect output_rect, gfx::RectF damage_rect, - const WebKit::WebTransformationMatrix& transform_to_root_target, + const gfx::Transform& transform_to_root_target, bool has_transparent_background, bool has_occlusion_from_outside_target_surface, const WebKit::WebFilterOperations& filters, |