| Index: ui/views/animation/ink_drop_ripple_observer.h
|
| diff --git a/ui/views/animation/ink_drop_animation_observer.h b/ui/views/animation/ink_drop_ripple_observer.h
|
| similarity index 71%
|
| rename from ui/views/animation/ink_drop_animation_observer.h
|
| rename to ui/views/animation/ink_drop_ripple_observer.h
|
| index 831a6be06b3b6065eb4856ef342d3569a6daa905..b294b3ae95ca87c4cdd3d813dbf992dcfb90a290 100644
|
| --- a/ui/views/animation/ink_drop_animation_observer.h
|
| +++ b/ui/views/animation/ink_drop_ripple_observer.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_OBSERVER_H_
|
| -#define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_OBSERVER_H_
|
| +#ifndef UI_VIEWS_ANIMATION_INK_DROP_RIPPLE_OBSERVER_H_
|
| +#define UI_VIEWS_ANIMATION_INK_DROP_RIPPLE_OBSERVER_H_
|
|
|
| #include <string>
|
|
|
| @@ -14,8 +14,8 @@
|
|
|
| namespace views {
|
|
|
| -// Observer to attach to an InkDropAnimation.
|
| -class VIEWS_EXPORT InkDropAnimationObserver {
|
| +// Observer to attach to an InkDropRipple.
|
| +class VIEWS_EXPORT InkDropRippleObserver {
|
| public:
|
| // An animation for the given |ink_drop_state| has started.
|
| virtual void AnimationStarted(InkDropState ink_drop_state) = 0;
|
| @@ -29,13 +29,13 @@ class VIEWS_EXPORT InkDropAnimationObserver {
|
| InkDropAnimationEndedReason reason) = 0;
|
|
|
| protected:
|
| - InkDropAnimationObserver() = default;
|
| - virtual ~InkDropAnimationObserver() = default;
|
| + InkDropRippleObserver() = default;
|
| + virtual ~InkDropRippleObserver() = default;
|
|
|
| private:
|
| - DISALLOW_COPY_AND_ASSIGN(InkDropAnimationObserver);
|
| + DISALLOW_COPY_AND_ASSIGN(InkDropRippleObserver);
|
| };
|
|
|
| } // namespace views
|
|
|
| -#endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_OBSERVER_H_
|
| +#endif // UI_VIEWS_ANIMATION_INK_DROP_RIPPLE_OBSERVER_H_
|
|
|