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 "cc/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #include "cc/test/fake_scoped_ui_resource.h" | 46 #include "cc/test/fake_scoped_ui_resource.h" |
47 #include "cc/test/fake_video_frame_provider.h" | 47 #include "cc/test/fake_video_frame_provider.h" |
48 #include "cc/test/geometry_test_utils.h" | 48 #include "cc/test/geometry_test_utils.h" |
49 #include "cc/test/layer_tree_test.h" | 49 #include "cc/test/layer_tree_test.h" |
50 #include "cc/test/test_shared_bitmap_manager.h" | 50 #include "cc/test/test_shared_bitmap_manager.h" |
51 #include "cc/test/test_web_graphics_context_3d.h" | 51 #include "cc/test/test_web_graphics_context_3d.h" |
52 #include "cc/trees/layer_tree_host_impl.h" | 52 #include "cc/trees/layer_tree_host_impl.h" |
53 #include "cc/trees/layer_tree_impl.h" | 53 #include "cc/trees/layer_tree_impl.h" |
54 #include "cc/trees/single_thread_proxy.h" | 54 #include "cc/trees/single_thread_proxy.h" |
55 #include "gpu/GLES2/gl2extchromium.h" | 55 #include "gpu/GLES2/gl2extchromium.h" |
56 #include "skia/ext/refptr.h" | |
57 #include "testing/gmock/include/gmock/gmock.h" | 56 #include "testing/gmock/include/gmock/gmock.h" |
58 #include "third_party/khronos/GLES2/gl2.h" | 57 #include "third_party/khronos/GLES2/gl2.h" |
59 #include "third_party/khronos/GLES2/gl2ext.h" | 58 #include "third_party/khronos/GLES2/gl2ext.h" |
60 #include "third_party/skia/include/core/SkPicture.h" | 59 #include "third_party/skia/include/core/SkPicture.h" |
61 #include "ui/gfx/geometry/point_conversions.h" | 60 #include "ui/gfx/geometry/point_conversions.h" |
62 #include "ui/gfx/geometry/size_conversions.h" | 61 #include "ui/gfx/geometry/size_conversions.h" |
63 #include "ui/gfx/geometry/vector2d_conversions.h" | 62 #include "ui/gfx/geometry/vector2d_conversions.h" |
64 | 63 |
65 using testing::_; | 64 using testing::_; |
66 using testing::AnyNumber; | 65 using testing::AnyNumber; |
(...skipping 6358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6425 EndTest(); | 6424 EndTest(); |
6426 } | 6425 } |
6427 | 6426 |
6428 void AfterTest() override {} | 6427 void AfterTest() override {} |
6429 }; | 6428 }; |
6430 | 6429 |
6431 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); | 6430 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); |
6432 | 6431 |
6433 } // namespace | 6432 } // namespace |
6434 } // namespace cc | 6433 } // namespace cc |
OLD | NEW |