Chromium Code Reviews| Index: ui/views/animation/flood_fill_ink_drop_animation.h |
| diff --git a/ui/views/animation/flood_fill_ink_drop_animation.h b/ui/views/animation/flood_fill_ink_drop_animation.h |
| index 2449895ce343e590f965bd243bcc27cf40963fd6..d868b848a16b5e1c28fd867afeed8b4bc2a14567 100644 |
| --- a/ui/views/animation/flood_fill_ink_drop_animation.h |
| +++ b/ui/views/animation/flood_fill_ink_drop_animation.h |
| @@ -48,7 +48,7 @@ class FloodFillInkDropAnimationTestApi; |
| // |
| class VIEWS_EXPORT FloodFillInkDropAnimation : public InkDropAnimation { |
| public: |
| - FloodFillInkDropAnimation(const gfx::Size& size, |
| + FloodFillInkDropAnimation(const gfx::Rect& clip_bounds, |
|
jonross
2016/05/02 14:48:54
No rect include?
bruthig
2016/05/02 14:59:35
Added.
|
| const gfx::Point& center_point, |
| SkColor color); |
| ~FloodFillInkDropAnimation() override; |
| @@ -101,8 +101,8 @@ class VIEWS_EXPORT FloodFillInkDropAnimation : public InkDropAnimation { |
| // Returns the target Transform for when the ink drop is fully shown. |
| gfx::Transform GetMaxSizeTargetTransform() const; |
| - // The clip Size. |
| - const gfx::Size size_; |
| + // The clip bounds. |
| + const gfx::Rect clip_bounds_; |
| // The point where the Center of the ink drop's circle should be drawn. |
| gfx::Point center_point_; |