OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "CCThreadedTest.h" | 7 #include "CCThreadedTest.h" |
8 | 8 |
9 #include "CCActiveAnimation.h" | 9 #include "CCActiveAnimation.h" |
10 #include "CCInputHandler.h" | 10 #include "CCInputHandler.h" |
11 #include "CCLayerAnimationController.h" | 11 #include "CCLayerAnimationController.h" |
12 #include "CCLayerImpl.h" | 12 #include "CCLayerImpl.h" |
13 #include "CCLayerTreeHostImpl.h" | |
14 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
15 #include "cc/content_layer.h" | 14 #include "cc/content_layer.h" |
16 #include "cc/layer.h" | 15 #include "cc/layer.h" |
| 16 #include "cc/layer_tree_host_impl.h" |
17 #include "cc/scoped_thread_proxy.h" | 17 #include "cc/scoped_thread_proxy.h" |
18 #include "cc/settings.h" | 18 #include "cc/settings.h" |
19 #include "cc/single_thread_proxy.h" | 19 #include "cc/single_thread_proxy.h" |
20 #include "cc/test/animation_test_common.h" | 20 #include "cc/test/animation_test_common.h" |
21 #include "cc/test/fake_web_compositor_output_surface.h" | 21 #include "cc/test/fake_web_compositor_output_surface.h" |
22 #include "cc/test/fake_web_graphics_context_3d.h" | 22 #include "cc/test/fake_web_graphics_context_3d.h" |
23 #include "cc/test/occlusion_tracker_test_common.h" | 23 #include "cc/test/occlusion_tracker_test_common.h" |
24 #include "cc/test/test_common.h" | 24 #include "cc/test/test_common.h" |
25 #include "cc/test/tiled_layer_test_common.h" | 25 #include "cc/test/tiled_layer_test_common.h" |
26 #include "cc/thread_task.h" | 26 #include "cc/thread_task.h" |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 if (m_timedOut) { | 559 if (m_timedOut) { |
560 FAIL() << "Test timed out"; | 560 FAIL() << "Test timed out"; |
561 Platform::current()->compositorSupport()->shutdown(); | 561 Platform::current()->compositorSupport()->shutdown(); |
562 return; | 562 return; |
563 } | 563 } |
564 afterTest(); | 564 afterTest(); |
565 Platform::current()->compositorSupport()->shutdown(); | 565 Platform::current()->compositorSupport()->shutdown(); |
566 } | 566 } |
567 | 567 |
568 } // namespace WebKitTests | 568 } // namespace WebKitTests |
OLD | NEW |