| Index: ui/views/animation/ink_drop_host_view.h
|
| diff --git a/ui/views/animation/ink_drop_host_view.h b/ui/views/animation/ink_drop_host_view.h
|
| index 87832b7dd0ae7e3e5758e2e37dafa9dbf468bcfc..9467d1e0f7a1604364981bfbcbf82af3db729fc0 100644
|
| --- a/ui/views/animation/ink_drop_host_view.h
|
| +++ b/ui/views/animation/ink_drop_host_view.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| +#include "ui/gfx/geometry/size.h"
|
| #include "ui/views/animation/ink_drop_host.h"
|
| #include "ui/views/view.h"
|
|
|
| @@ -27,6 +28,8 @@ class VIEWS_EXPORT InkDropHostView : public views::View, public InkDropHost {
|
| scoped_ptr<InkDropAnimation> CreateInkDropAnimation() const override;
|
| scoped_ptr<InkDropHover> CreateInkDropHover() const override;
|
|
|
| + void set_ink_drop_size(const gfx::Size& size) { ink_drop_size_ = size; }
|
| +
|
| protected:
|
| // Overrideable methods to allow views to provide minor tweaks to the default
|
| // ink drop.
|
| @@ -34,6 +37,8 @@ class VIEWS_EXPORT InkDropHostView : public views::View, public InkDropHost {
|
| virtual SkColor GetInkDropBaseColor() const;
|
|
|
| private:
|
| + gfx::Size ink_drop_size_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(InkDropHostView);
|
| };
|
| }
|
|
|