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

Side by Side Diff: ui/views/animation/ink_drop_animation_controller_factory.h

Issue 1298513003: Implemented prototype for new ink drop specs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from patch set 10. Created 5 years, 3 months 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 unified diff | Download patch
OLDNEW
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/animation/ink_drop_animation_controller.h"
11 #include "ui/views/views_export.h" 10 #include "ui/views/views_export.h"
12 11
13 namespace views { 12 namespace views {
13 class InkDropAnimationController;
14 class InkDropHost;
14 15
15 // A factory to create InkDropAnimationController. A different 16 // A factory to create InkDropAnimationController. A different
16 // InkDropAnimationController type will be created based on whether or not 17 // InkDropAnimationController type will be created based on whether or not
17 // material design is enabled. 18 // material design is enabled.
18 class VIEWS_EXPORT InkDropAnimationControllerFactory { 19 class VIEWS_EXPORT InkDropAnimationControllerFactory {
19 public: 20 public:
20 // Creates a new InkDropAnimationController. 21 // Creates a new InkDropAnimationController that will add/remove an
22 // InkDropAnimation's ui::Layer to/from the |ink_drop_host| when the animation
23 // is active/inactive.
21 static scoped_ptr<InkDropAnimationController> 24 static scoped_ptr<InkDropAnimationController>
22 CreateInkDropAnimationController(InkDropHost* ink_drop_host); 25 CreateInkDropAnimationController(InkDropHost* ink_drop_host);
23 26
24 private: 27 private:
25 InkDropAnimationControllerFactory(); 28 InkDropAnimationControllerFactory();
26 ~InkDropAnimationControllerFactory(); 29 ~InkDropAnimationControllerFactory();
27 30
28 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationControllerFactory); 31 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationControllerFactory);
29 }; 32 };
30 33
31 } // namespace views 34 } // namespace views
32 35
33 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_ 36 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/views/animation/ink_drop_animation_controller.h ('k') | ui/views/animation/ink_drop_animation_controller_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698