| Index: ui/views/animation/ink_drop.h
|
| diff --git a/ui/views/animation/ink_drop_animation_controller.h b/ui/views/animation/ink_drop.h
|
| similarity index 80%
|
| rename from ui/views/animation/ink_drop_animation_controller.h
|
| rename to ui/views/animation/ink_drop.h
|
| index 19cd8f999c0df7925c5c54c388e2886755056493..c79828ac5672276d84c892e4c9aa7bcb818c1cd7 100644
|
| --- a/ui/views/animation/ink_drop_animation_controller.h
|
| +++ b/ui/views/animation/ink_drop.h
|
| @@ -2,8 +2,8 @@
|
| // 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_ANIMATION_CONTROLLER_H_
|
| -#define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_
|
| +#ifndef UI_VIEWS_ANIMATION_INK_DROP_H_
|
| +#define UI_VIEWS_ANIMATION_INK_DROP_H_
|
|
|
| #include <memory>
|
|
|
| @@ -24,9 +24,9 @@ namespace views {
|
|
|
| // Pure virtual base class that manages the lifetime and state of an ink drop
|
| // ripple as well as visual hover state feedback.
|
| -class VIEWS_EXPORT InkDropAnimationController {
|
| +class VIEWS_EXPORT InkDrop {
|
| public:
|
| - virtual ~InkDropAnimationController() {}
|
| + virtual ~InkDrop() {}
|
|
|
| // Gets the target state of the ink drop.
|
| virtual InkDropState GetTargetInkDropState() const = 0;
|
| @@ -48,12 +48,12 @@ class VIEWS_EXPORT InkDropAnimationController {
|
| virtual void SetHovered(bool is_hovered) = 0;
|
|
|
| protected:
|
| - InkDropAnimationController() {}
|
| + InkDrop() {}
|
|
|
| private:
|
| - DISALLOW_COPY_AND_ASSIGN(InkDropAnimationController);
|
| + DISALLOW_COPY_AND_ASSIGN(InkDrop);
|
| };
|
|
|
| } // namespace views
|
|
|
| -#endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_
|
| +#endif // UI_VIEWS_ANIMATION_INK_DROP_H_
|
|
|