| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | 5 #ifndef UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ |
| 6 #define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | 6 #define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 class InkDropAnimationController; | 13 class InkDropAnimationController; |
| 14 class InkDropConsumer; |
| 14 class InkDropHost; | 15 class InkDropHost; |
| 15 | 16 |
| 16 // A factory to create InkDropAnimationController. A different | 17 // A factory to create InkDropAnimationController. A different |
| 17 // InkDropAnimationController type will be created based on whether or not | 18 // InkDropAnimationController type will be created based on whether or not |
| 18 // material design is enabled. | 19 // material design is enabled. |
| 19 class VIEWS_EXPORT InkDropAnimationControllerFactory { | 20 class VIEWS_EXPORT InkDropAnimationControllerFactory { |
| 20 public: | 21 public: |
| 21 // Creates a new InkDropAnimationController that will add/remove an | 22 // Creates a new InkDropAnimationController that will add/remove an |
| 22 // InkDropAnimation's ui::Layer to/from the |ink_drop_host| when the animation | 23 // InkDropAnimation's ui::Layer to/from the |ink_drop_host| when the animation |
| 23 // is active/inactive. | 24 // is active/inactive. |
| 24 static scoped_ptr<InkDropAnimationController> | 25 static scoped_ptr<InkDropAnimationController> |
| 25 CreateInkDropAnimationController(InkDropHost* ink_drop_host); | 26 CreateInkDropAnimationController(InkDropHost* ink_drop_host, |
| 27 InkDropConsumer* ink_drop_consumer); |
| 26 | 28 |
| 27 private: | 29 private: |
| 28 InkDropAnimationControllerFactory(); | 30 InkDropAnimationControllerFactory(); |
| 29 ~InkDropAnimationControllerFactory(); | 31 ~InkDropAnimationControllerFactory(); |
| 30 | 32 |
| 31 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationControllerFactory); | 33 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationControllerFactory); |
| 32 }; | 34 }; |
| 33 | 35 |
| 34 } // namespace views | 36 } // namespace views |
| 35 | 37 |
| 36 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ | 38 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ |
| OLD | NEW |