HomeSort by relevance Sort by last modified time
    Searched defs:AnimationContainer (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/gfx/animation/
animation_container.cc 16 AnimationContainer::AnimationContainer()
21 AnimationContainer::~AnimationContainer() {
27 void AnimationContainer::Start(AnimationContainerElement* element) {
42 void AnimationContainer::Stop(AnimationContainerElement* element) {
58 void AnimationContainer::Run() {
63 scoped_refptr<AnimationContainer> this_ref(this);
84 void AnimationContainer::SetMinTimerInterval(base::TimeDelta delta) {
86 // that shouldn't be a problem for uses of Animation/AnimationContainer
    [all...]
animation_container.h 20 // AnimationContainer is used by Animation to manage the underlying timer.
21 // Internally each Animation creates a single AnimationContainer. You can
22 // group a set of Animations into the same AnimationContainer by way of
24 // AnimationContainer ensures they all update and start at the same time.
26 // AnimationContainer is ref counted. Each Animation contained within the
27 // AnimationContainer own it.
28 class GFX_EXPORT AnimationContainer
29 : public base::RefCounted<AnimationContainer> {
31 AnimationContainer();
55 friend class base::RefCounted<AnimationContainer>;
    [all...]

Completed in 399 milliseconds