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 "CCAnimationTestCommon.h" | 10 #include "CCAnimationTestCommon.h" |
11 #include "CCInputHandler.h" | 11 #include "CCInputHandler.h" |
12 #include "CCLayerAnimationController.h" | 12 #include "CCLayerAnimationController.h" |
13 #include "CCLayerImpl.h" | 13 #include "CCLayerImpl.h" |
14 #include "CCLayerTreeHostImpl.h" | 14 #include "CCLayerTreeHostImpl.h" |
15 #include "CCOcclusionTrackerTestCommon.h" | 15 #include "CCOcclusionTrackerTestCommon.h" |
16 #include "CCScopedThreadProxy.h" | 16 #include "CCScopedThreadProxy.h" |
17 #include "CCSingleThreadProxy.h" | 17 #include "CCSingleThreadProxy.h" |
18 #include "CCTextureUpdateQueue.h" | 18 #include "CCTextureUpdateQueue.h" |
19 #include "CCThreadTask.h" | 19 #include "CCThreadTask.h" |
20 #include "CCTiledLayerTestCommon.h" | 20 #include "CCTiledLayerTestCommon.h" |
21 #include "CCTimingFunction.h" | 21 #include "CCTimingFunction.h" |
22 #include "ContentLayerChromium.h" | 22 #include "ContentLayerChromium.h" |
23 #include "FakeWebCompositorOutputSurface.h" | 23 #include "FakeWebCompositorOutputSurface.h" |
24 #include "FakeWebGraphicsContext3D.h" | 24 #include "FakeWebGraphicsContext3D.h" |
25 #include "LayerChromium.h" | 25 #include "LayerChromium.h" |
26 #include <gmock/gmock.h> | 26 #include "testing/gmock/include/gmock/gmock.h" |
27 #include <public/Platform.h> | 27 #include <public/Platform.h> |
28 #include <public/WebCompositorSupport.h> | 28 #include <public/WebCompositorSupport.h> |
29 #include <public/WebFilterOperation.h> | 29 #include <public/WebFilterOperation.h> |
30 #include <public/WebFilterOperations.h> | 30 #include <public/WebFilterOperations.h> |
31 #include <public/WebThread.h> | 31 #include <public/WebThread.h> |
32 #include <wtf/Locker.h> | 32 #include <wtf/Locker.h> |
33 #include <wtf/PassRefPtr.h> | 33 #include <wtf/PassRefPtr.h> |
34 #include <wtf/Vector.h> | 34 #include <wtf/Vector.h> |
35 | 35 |
36 using namespace cc; | 36 using namespace cc; |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 if (m_timedOut) { | 555 if (m_timedOut) { |
556 FAIL() << "Test timed out"; | 556 FAIL() << "Test timed out"; |
557 Platform::current()->compositorSupport()->shutdown(); | 557 Platform::current()->compositorSupport()->shutdown(); |
558 return; | 558 return; |
559 } | 559 } |
560 afterTest(); | 560 afterTest(); |
561 Platform::current()->compositorSupport()->shutdown(); | 561 Platform::current()->compositorSupport()->shutdown(); |
562 } | 562 } |
563 | 563 |
564 } // namespace WebKitTests | 564 } // namespace WebKitTests |
OLD | NEW |