// 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. #ifndef UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_ANIMATION_OBSERVER_HELPER_H_ #define UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_ANIMATION_OBSERVER_HELPER_H_ #include <algorithm> #include <vector> #include "base/ranges/algorithm.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/views/animation/ink_drop_animation_ended_reason.h" namespace views::test { // Context tracking helper that can be used with test implementations of // ink drop animation observers. template <typename ContextType> class TestInkDropAnimationObserverHelper { … }; } // namespace views::test #endif // UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_ANIMATION_OBSERVER_HELPER_H_