chromium/ui/views/animation/test/test_ink_drop.h

// 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_H_
#define UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_H_

#include "ui/views/animation/ink_drop.h"

namespace views::test {

// A InkDrop test double that tracks the last requested state changes.
//
// NOTE: This does not auto transition between any of the InkDropStates.
//
class TestInkDrop : public InkDrop {};

}  // namespace views::test

#endif  // UI_VIEWS_ANIMATION_TEST_TEST_INK_DROP_H_