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 "CCLayerTreeHost.h" | 7 #include "CCLayerTreeHost.h" |
8 | 8 |
9 #include "CCGeometryTestUtils.h" | 9 #include "CCGeometryTestUtils.h" |
10 #include "CCGraphicsContext.h" | 10 #include "CCGraphicsContext.h" |
11 #include "CCLayerTreeHostImpl.h" | 11 #include "CCLayerTreeHostImpl.h" |
12 #include "CCOcclusionTrackerTestCommon.h" | 12 #include "CCOcclusionTrackerTestCommon.h" |
13 #include "CCSettings.h" | 13 #include "CCSettings.h" |
14 #include "CCSingleThreadProxy.h" | 14 #include "CCSingleThreadProxy.h" |
15 #include "CCTextureUpdateQueue.h" | 15 #include "CCTextureUpdateQueue.h" |
16 #include "CCThreadedTest.h" | 16 #include "CCThreadedTest.h" |
17 #include "CCTimingFunction.h" | 17 #include "CCTimingFunction.h" |
18 #include "ContentLayerChromium.h" | 18 #include "ContentLayerChromium.h" |
19 #include "ContentLayerChromiumClient.h" | 19 #include "ContentLayerChromiumClient.h" |
20 #include "Extensions3DChromium.h" | 20 #include "Extensions3DChromium.h" |
21 #include "FakeWebCompositorOutputSurface.h" | 21 #include "FakeWebCompositorOutputSurface.h" |
22 #include <gmock/gmock.h> | 22 #include "testing/gmock/include/gmock/gmock.h" |
23 #include <public/Platform.h> | 23 #include <public/Platform.h> |
24 #include <public/WebLayerScrollClient.h> | 24 #include <public/WebLayerScrollClient.h> |
25 #include <public/WebSize.h> | 25 #include <public/WebSize.h> |
26 #include <wtf/OwnArrayPtr.h> | 26 #include <wtf/OwnArrayPtr.h> |
27 | 27 |
28 using namespace cc; | 28 using namespace cc; |
29 using namespace WebKit; | 29 using namespace WebKit; |
30 using namespace WebKitTests; | 30 using namespace WebKitTests; |
31 | 31 |
32 namespace { | 32 namespace { |
(...skipping 2955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2988 int m_numCommitComplete; | 2988 int m_numCommitComplete; |
2989 int m_numDrawLayers; | 2989 int m_numDrawLayers; |
2990 }; | 2990 }; |
2991 | 2991 |
2992 TEST_F(CCLayerTreeHostTestContinuousAnimate, runMultiThread) | 2992 TEST_F(CCLayerTreeHostTestContinuousAnimate, runMultiThread) |
2993 { | 2993 { |
2994 runTest(true); | 2994 runTest(true); |
2995 } | 2995 } |
2996 | 2996 |
2997 } // namespace | 2997 } // namespace |
OLD | NEW |