| Index: ui/views/animation/test/test_ink_drop_host.cc
|
| diff --git a/ui/views/animation/test/test_ink_drop_host.cc b/ui/views/animation/test/test_ink_drop_host.cc
|
| index 689f99768778f1559917fa3c601c3adc92d8936c..3b4661699fdb34fe9152ee7f1b17c84b41f3d3ef 100644
|
| --- a/ui/views/animation/test/test_ink_drop_host.cc
|
| +++ b/ui/views/animation/test/test_ink_drop_host.cc
|
| @@ -6,7 +6,8 @@
|
|
|
| namespace views {
|
|
|
| -TestInkDropHost::TestInkDropHost() : num_ink_drop_layers_(0) {}
|
| +TestInkDropHost::TestInkDropHost()
|
| + : num_ink_drop_layers_(0), should_show_hover_(false) {}
|
|
|
| TestInkDropHost::~TestInkDropHost() {}
|
|
|
| @@ -22,4 +23,8 @@ gfx::Point TestInkDropHost::CalculateInkDropCenter() const {
|
| return gfx::Point();
|
| }
|
|
|
| +bool TestInkDropHost::ShouldShowInkDropHover() const {
|
| + return should_show_hover_;
|
| +}
|
| +
|
| } // namespace views
|
|
|