| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "cc/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "cc/animation/animation_curve.h" | 9 #include "cc/animation/animation_curve.h" |
| 10 #include "cc/animation/animation_host.h" | 10 #include "cc/animation/animation_host.h" |
| 11 #include "cc/animation/animation_id_provider.h" | 11 #include "cc/animation/animation_id_provider.h" |
| 12 #include "cc/animation/animation_player.h" | 12 #include "cc/animation/animation_player.h" |
| 13 #include "cc/animation/animation_registrar.h" |
| 13 #include "cc/animation/animation_timeline.h" | 14 #include "cc/animation/animation_timeline.h" |
| 14 #include "cc/animation/element_animations.h" | 15 #include "cc/animation/element_animations.h" |
| 15 #include "cc/animation/layer_animation_controller.h" | 16 #include "cc/animation/layer_animation_controller.h" |
| 16 #include "cc/animation/scroll_offset_animation_curve.h" | 17 #include "cc/animation/scroll_offset_animation_curve.h" |
| 17 #include "cc/animation/timing_function.h" | 18 #include "cc/animation/timing_function.h" |
| 18 #include "cc/animation/transform_operations.h" | 19 #include "cc/animation/transform_operations.h" |
| 19 #include "cc/base/completion_event.h" | 20 #include "cc/base/completion_event.h" |
| 20 #include "cc/base/time_util.h" | 21 #include "cc/base/time_util.h" |
| 21 #include "cc/layers/layer.h" | 22 #include "cc/layers/layer.h" |
| 22 #include "cc/layers/layer_impl.h" | 23 #include "cc/layers/layer_impl.h" |
| (...skipping 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1646 private: | 1647 private: |
| 1647 scoped_refptr<Layer> layer_; | 1648 scoped_refptr<Layer> layer_; |
| 1648 FakeContentLayerClient client_; | 1649 FakeContentLayerClient client_; |
| 1649 }; | 1650 }; |
| 1650 | 1651 |
| 1651 MULTI_THREAD_TEST_F( | 1652 MULTI_THREAD_TEST_F( |
| 1652 LayerTreeHostAnimationTestRebuildPropertyTreesOnAnimationSetNeedsCommit); | 1653 LayerTreeHostAnimationTestRebuildPropertyTreesOnAnimationSetNeedsCommit); |
| 1653 | 1654 |
| 1654 } // namespace | 1655 } // namespace |
| 1655 } // namespace cc | 1656 } // namespace cc |
| OLD | NEW |