| Index: ui/views/animation/ink_drop_host.h
|
| diff --git a/ui/views/animation/ink_drop_host.h b/ui/views/animation/ink_drop_host.h
|
| index ab9f165080d75ee0fd8cd1ab8e714484a655efb6..956a624c2bb194f7a408c301ac45c6e874112ada 100644
|
| --- a/ui/views/animation/ink_drop_host.h
|
| +++ b/ui/views/animation/ink_drop_host.h
|
| @@ -6,6 +6,7 @@
|
| #define UI_VIEWS_ANIMATION_INK_DROP_HOST_H_
|
|
|
| #include "base/macros.h"
|
| +#include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/gfx/geometry/point.h"
|
| #include "ui/views/views_export.h"
|
|
|
| @@ -39,6 +40,10 @@ class VIEWS_EXPORT InkDropHost {
|
| // Returns true if the InkDropHover should be shown.
|
| virtual bool ShouldShowInkDropHover() const = 0;
|
|
|
| + // Returns the color to be used to draw the press and hover effects (before an
|
| + // alpha is applied).
|
| + virtual SkColor GetInkDropBaseColor() const = 0;
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(InkDropHost);
|
| };
|
|
|