// 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_INK_DROP_STUB_H_ #define UI_VIEWS_ANIMATION_INK_DROP_STUB_H_ #include "ui/views/animation/ink_drop.h" #include "ui/views/views_export.h" namespace views { // A stub implementation of an InkDrop that can be used when no visuals should // be shown. e.g. material design is enabled. class VIEWS_EXPORT InkDropStub : public InkDrop { … }; } // namespace views #endif // UI_VIEWS_ANIMATION_INK_DROP_STUB_H_