| Index: ui/views/animation/test/ink_drop_host_view_test_api.cc
|
| diff --git a/ui/views/animation/test/ink_drop_host_view_test_api.cc b/ui/views/animation/test/ink_drop_host_view_test_api.cc
|
| index a97628bfab077d2eb02542bfc5ae14f5e9f5bb3d..957ec2091fd908aee7a4bbece3022c5a73a0430e 100644
|
| --- a/ui/views/animation/test/ink_drop_host_view_test_api.cc
|
| +++ b/ui/views/animation/test/ink_drop_host_view_test_api.cc
|
| @@ -17,5 +17,14 @@ void InkDropHostViewTestApi::SetInkDrop(std::unique_ptr<InkDrop> ink_drop) {
|
| host_view_->ink_drop_ = std::move(ink_drop);
|
| }
|
|
|
| +gfx::Point InkDropHostViewTestApi::GetInkDropCenterBasedOnLastEvent() const {
|
| + return host_view_->GetInkDropCenterBasedOnLastEvent();
|
| +}
|
| +
|
| +void InkDropHostViewTestApi::AnimateInkDrop(InkDropState state,
|
| + const ui::LocatedEvent* event) {
|
| + host_view_->AnimateInkDrop(state, event);
|
| +}
|
| +
|
| } // namespace test
|
| } // namespace views
|
|
|