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/layer_tree_host.h" | 5 #include "cc/layer_tree_host.h" |
6 | 6 |
7 #include "cc/animation_curve.h" | 7 #include "cc/animation/animation_curve.h" |
| 8 #include "cc/animation/layer_animation_controller.h" |
8 #include "cc/layer.h" | 9 #include "cc/layer.h" |
9 #include "cc/layer_animation_controller.h" | |
10 #include "cc/layer_impl.h" | 10 #include "cc/layer_impl.h" |
11 #include "cc/test/fake_content_layer.h" | 11 #include "cc/test/fake_content_layer.h" |
12 #include "cc/test/fake_content_layer_client.h" | 12 #include "cc/test/fake_content_layer_client.h" |
13 #include "cc/test/layer_tree_test_common.h" | 13 #include "cc/test/layer_tree_test_common.h" |
14 #include "cc/timing_function.h" | 14 #include "cc/timing_function.h" |
15 | 15 |
16 namespace cc { | 16 namespace cc { |
17 namespace { | 17 namespace { |
18 | 18 |
19 class LayerTreeHostAnimationTest : public ThreadedTest { | 19 class LayerTreeHostAnimationTest : public ThreadedTest { |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 | 536 |
537 private: | 537 private: |
538 int num_commit_complete_; | 538 int num_commit_complete_; |
539 int num_draw_layers_; | 539 int num_draw_layers_; |
540 }; | 540 }; |
541 | 541 |
542 MULTI_THREAD_TEST_F(LayerTreeHostAnimationTestContinuousAnimate) | 542 MULTI_THREAD_TEST_F(LayerTreeHostAnimationTestContinuousAnimate) |
543 | 543 |
544 } // namespace | 544 } // namespace |
545 } // namespace cc | 545 } // namespace cc |
OLD | NEW |