OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "ui/compositor/layer_animator.h" | 5 #include "ui/compositor/layer_animator.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/trace_event/trace_event.h" | 11 #include "base/trace_event/trace_event.h" |
| 12 #include "cc/animation/animation_events.h" |
12 #include "cc/animation/animation_id_provider.h" | 13 #include "cc/animation/animation_id_provider.h" |
13 #include "cc/animation/animation_player.h" | 14 #include "cc/animation/animation_player.h" |
14 #include "cc/animation/animation_timeline.h" | 15 #include "cc/animation/animation_timeline.h" |
15 #include "cc/animation/element_animations.h" | 16 #include "cc/animation/element_animations.h" |
16 #include "cc/layers/layer_settings.h" | 17 #include "cc/layers/layer_settings.h" |
17 #include "cc/output/begin_frame_args.h" | 18 #include "cc/output/begin_frame_args.h" |
18 #include "ui/compositor/compositor.h" | 19 #include "ui/compositor/compositor.h" |
19 #include "ui/compositor/layer.h" | 20 #include "ui/compositor/layer.h" |
20 #include "ui/compositor/layer_animation_delegate.h" | 21 #include "ui/compositor/layer_animation_delegate.h" |
21 #include "ui/compositor/layer_animation_observer.h" | 22 #include "ui/compositor/layer_animation_observer.h" |
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 } | 943 } |
943 | 944 |
944 LayerAnimator::RunningAnimation::RunningAnimation( | 945 LayerAnimator::RunningAnimation::RunningAnimation( |
945 const base::WeakPtr<LayerAnimationSequence>& sequence) | 946 const base::WeakPtr<LayerAnimationSequence>& sequence) |
946 : sequence_(sequence) { | 947 : sequence_(sequence) { |
947 } | 948 } |
948 | 949 |
949 LayerAnimator::RunningAnimation::~RunningAnimation() { } | 950 LayerAnimator::RunningAnimation::~RunningAnimation() { } |
950 | 951 |
951 } // namespace ui | 952 } // namespace ui |
OLD | NEW |