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

Side by Side Diff: ui/base/animation/animation_container.h

Issue 7569005: Rename UI_API to UI_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/animation/animation.h ('k') | ui/base/animation/animation_container_element.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BASE_ANIMATION_ANIMATION_CONTAINER_H_ 5 #ifndef UI_BASE_ANIMATION_ANIMATION_CONTAINER_H_
6 #define UI_BASE_ANIMATION_ANIMATION_CONTAINER_H_ 6 #define UI_BASE_ANIMATION_ANIMATION_CONTAINER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/time.h" 12 #include "base/time.h"
13 #include "base/timer.h" 13 #include "base/timer.h"
14 #include "ui/ui_api.h" 14 #include "ui/base/ui_export.h"
15 15
16 namespace ui { 16 namespace ui {
17 17
18 class AnimationContainerElement; 18 class AnimationContainerElement;
19 class AnimationContainerObserver; 19 class AnimationContainerObserver;
20 20
21 // AnimationContainer is used by Animation to manage the underlying timer. 21 // AnimationContainer is used by Animation to manage the underlying timer.
22 // Internally each Animation creates a single AnimationContainer. You can 22 // Internally each Animation creates a single AnimationContainer. You can
23 // group a set of Animations into the same AnimationContainer by way of 23 // group a set of Animations into the same AnimationContainer by way of
24 // Animation::SetContainer. Grouping a set of Animations into the same 24 // Animation::SetContainer. Grouping a set of Animations into the same
25 // AnimationContainer ensures they all update and start at the same time. 25 // AnimationContainer ensures they all update and start at the same time.
26 // 26 //
27 // AnimationContainer is ref counted. Each Animation contained within the 27 // AnimationContainer is ref counted. Each Animation contained within the
28 // AnimationContainer own it. 28 // AnimationContainer own it.
29 class UI_API AnimationContainer 29 class UI_EXPORT AnimationContainer
30 : public base::RefCounted<AnimationContainer> { 30 : public base::RefCounted<AnimationContainer> {
31 public: 31 public:
32 AnimationContainer(); 32 AnimationContainer();
33 33
34 // Invoked by Animation when it needs to start. Starts the timer if necessary. 34 // Invoked by Animation when it needs to start. Starts the timer if necessary.
35 // NOTE: This is invoked by Animation for you, you shouldn't invoke this 35 // NOTE: This is invoked by Animation for you, you shouldn't invoke this
36 // directly. 36 // directly.
37 void Start(AnimationContainerElement* animation); 37 void Start(AnimationContainerElement* animation);
38 38
39 // Invoked by Animation when it needs to stop. If there are no more animations 39 // Invoked by Animation when it needs to stop. If there are no more animations
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 base::RepeatingTimer<AnimationContainer> timer_; 83 base::RepeatingTimer<AnimationContainer> timer_;
84 84
85 AnimationContainerObserver* observer_; 85 AnimationContainerObserver* observer_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(AnimationContainer); 87 DISALLOW_COPY_AND_ASSIGN(AnimationContainer);
88 }; 88 };
89 89
90 } // namespace ui 90 } // namespace ui
91 91
92 #endif // UI_BASE_ANIMATION_ANIMATION_CONTAINER_H_ 92 #endif // UI_BASE_ANIMATION_ANIMATION_CONTAINER_H_
OLDNEW
« no previous file with comments | « ui/base/animation/animation.h ('k') | ui/base/animation/animation_container_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698