Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: ui/views/animation/ink_drop.h

Issue 1937353002: Rename of InkDropAnimationController classes to InkDrop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed tdanderson@ comments from patch set 2. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/animation/button_ink_drop_delegate.cc ('k') | ui/views/animation/ink_drop_animation_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « ui/views/animation/button_ink_drop_delegate.cc ('k') | ui/views/animation/ink_drop_animation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698