// Copyright 2015 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_HOST_H_ #define UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_HOST_H_ #include "base/memory/raw_ptr.h" #include "ui/views/animation/ink_drop_host.h" #include "ui/views/animation/ink_drop_impl.h" namespace views { // A non-functional implementation of an View with an ink drop that can be used // during tests. Tracks the number of hosted ink drop layers. class TestInkDropHost : public View { … }; } // namespace views #endif // UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_HOST_H_