// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/animation/test/test_ink_drop_ripple_observer.h" #include "ui/views/animation/ink_drop_ripple.h" namespace views::test { TestInkDropRippleObserver::TestInkDropRippleObserver() = default; TestInkDropRippleObserver::~TestInkDropRippleObserver() = default; void TestInkDropRippleObserver::AnimationStarted(InkDropState ink_drop_state) { … } void TestInkDropRippleObserver::AnimationEnded( InkDropState ink_drop_state, InkDropAnimationEndedReason reason) { … } } // namespace views::test