Chromium Code Reviews| 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. |