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

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 diff delta. 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
« no previous file with comments | « chrome/browser/ui/views/toolbar/toolbar_button.cc ('k') | ui/views/animation/ink_drop_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..031492c74313e88e9dd4a267f005024b58ca67db 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.
varkha 2015/12/28 19:06:30 nit: s/Add/Adds.
bruthig 2015/12/29 00:09:33 Done.
- virtual void AddInkDropLayer(ui::Layer* ink_drop_layer) = 0;
+ 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.
« no previous file with comments | « chrome/browser/ui/views/toolbar/toolbar_button.cc ('k') | ui/views/animation/ink_drop_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698