| Index: cc/shared_quad_state.cc
|
| diff --git a/cc/shared_quad_state.cc b/cc/shared_quad_state.cc
|
| index a1f07ad1ce4d88019769e0d234a86da788f40574..c2d6b26f22c1f5fbda6a8fb6858b724124961848 100644
|
| --- a/cc/shared_quad_state.cc
|
| +++ b/cc/shared_quad_state.cc
|
| @@ -20,11 +20,13 @@ scoped_ptr<SharedQuadState> SharedQuadState::Copy() const {
|
|
|
| void SharedQuadState::SetAll(
|
| const gfx::Transform& content_to_target_transform,
|
| + const gfx::Size content_bounds,
|
| const gfx::Rect& visible_content_rect,
|
| const gfx::Rect& clip_rect,
|
| bool is_clipped,
|
| float opacity) {
|
| this->content_to_target_transform = content_to_target_transform;
|
| + this->content_bounds = content_bounds;
|
| this->visible_content_rect = visible_content_rect;
|
| this->clip_rect = clip_rect;
|
| this->is_clipped = is_clipped;
|
|
|