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

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

Issue 1550443002: Pushed InkDropHost inheritence up to CustomButton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed doc typo. Created 5 years 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
Index: ui/views/animation/ink_drop_host.h
diff --git a/ui/views/animation/ink_drop_host.h b/ui/views/animation/ink_drop_host.h
index 0830a41294ac3ab39632a5bb1b0311437ca90baa..64aa0cf7f22cc3b33d0b6453dbf5a3d37bbb4616 100644
--- a/ui/views/animation/ink_drop_host.h
+++ b/ui/views/animation/ink_drop_host.h
@@ -24,14 +24,14 @@ namespace views {
// a lightweight Layer that can parent the ink drop layer.
class VIEWS_EXPORT InkDropHost {
public:
- InkDropHost() {}
- virtual ~InkDropHost() {}
+ InkDropHost();
+ virtual ~InkDropHost();
- // Add the |ink_drop_layer| in to a visible layer tree.
- virtual void AddInkDropLayer(ui::Layer* ink_drop_layer) = 0;
+ // Adds the |ink_drop_layer| in to a visible layer tree.
+ virtual void AddInkDropLayer(ui::Layer* ink_drop_layer);
// Removes |ink_drop_layer| from the layer tree.
- virtual void RemoveInkDropLayer(ui::Layer* ink_drop_layer) = 0;
+ virtual void RemoveInkDropLayer(ui::Layer* ink_drop_layer);
// Returns the Point where the ink drop should be centered.
// TODO(varkha): This should be moved to InkDropConsumer.

Powered by Google App Engine
This is Rietveld 408576698