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 aa13504e49a4b26993c41fbc9e46423e0f71c33a..d6b39bf2344efd6e27223ad15265f2704ab49554 100644 |
--- a/ui/views/animation/ink_drop_host.h |
+++ b/ui/views/animation/ink_drop_host.h |
@@ -18,7 +18,7 @@ class Layer; |
namespace views { |
class InkDropRipple; |
-class InkDropHover; |
+class InkDropHighlight; |
// Used by the InkDrop to add and remove the ink drop layers from a host's layer |
// tree. Typically the ink drop layer is added to a View's layer but it can also |
@@ -41,8 +41,8 @@ class VIEWS_EXPORT InkDropHost { |
// Creates and returns the effect used for press. |
virtual std::unique_ptr<InkDropRipple> CreateInkDropRipple() const = 0; |
- // Creates and returns the effect used for hover. |
- virtual std::unique_ptr<InkDropHover> CreateInkDropHover() const = 0; |
+ // Creates and returns the effect used for hover and focus. |
+ virtual std::unique_ptr<InkDropHighlight> CreateInkDropHighlight() const = 0; |
private: |
DISALLOW_COPY_AND_ASSIGN(InkDropHost); |