Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | |
| 6 #define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "ui/views/animation/ink_drop_animation_controller.h" | |
| 11 #include "ui/views/views_export.h" | |
| 12 | |
| 13 namespace views { | |
| 14 | |
| 15 // A factory to create InkDropAnimationController. A different | |
| 16 // InkDropAnimationController type will be created based on whether or not | |
| 17 // material design is enabled. | |
| 18 class VIEWS_EXPORT InkDropAnimationControllerFactory { | |
| 19 public: | |
| 20 // Creates a new InkDropAnimationController. | |
| 21 static scoped_ptr<InkDropAnimationController> | |
| 22 CreateInkDropAnimationController(InkDropHost* ink_drop_host); | |
|
tdanderson
2015/08/11 19:07:41
nit: I think this should be indented
jonross
2015/08/11 20:34:46
I'd just recommend running: git cl format
bruthig
2015/08/12 15:26:40
This is how 'git cl format' formatted it.
| |
| 23 | |
| 24 private: | |
| 25 InkDropAnimationControllerFactory(); | |
| 26 ~InkDropAnimationControllerFactory(); | |
| 27 | |
| 28 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationControllerFactory); | |
| 29 }; | |
| 30 | |
| 31 } // namespace views | |
| 32 | |
| 33 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | |
| OLD | NEW |