| 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 <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "cc/test/fake_proxy.h" | 41 #include "cc/test/fake_proxy.h" |
| 42 #include "cc/test/fake_scoped_ui_resource.h" | 42 #include "cc/test/fake_scoped_ui_resource.h" |
| 43 #include "cc/test/fake_video_frame_provider.h" | 43 #include "cc/test/fake_video_frame_provider.h" |
| 44 #include "cc/test/geometry_test_utils.h" | 44 #include "cc/test/geometry_test_utils.h" |
| 45 #include "cc/test/layer_tree_test.h" | 45 #include "cc/test/layer_tree_test.h" |
| 46 #include "cc/test/test_shared_bitmap_manager.h" | 46 #include "cc/test/test_shared_bitmap_manager.h" |
| 47 #include "cc/test/test_web_graphics_context_3d.h" | 47 #include "cc/test/test_web_graphics_context_3d.h" |
| 48 #include "cc/trees/layer_tree_host_impl.h" | 48 #include "cc/trees/layer_tree_host_impl.h" |
| 49 #include "cc/trees/layer_tree_impl.h" | 49 #include "cc/trees/layer_tree_impl.h" |
| 50 #include "cc/trees/single_thread_proxy.h" | 50 #include "cc/trees/single_thread_proxy.h" |
| 51 #include "cc/trees/thread_proxy.h" | |
| 52 #include "gpu/GLES2/gl2extchromium.h" | 51 #include "gpu/GLES2/gl2extchromium.h" |
| 53 #include "skia/ext/refptr.h" | 52 #include "skia/ext/refptr.h" |
| 54 #include "testing/gmock/include/gmock/gmock.h" | 53 #include "testing/gmock/include/gmock/gmock.h" |
| 55 #include "third_party/khronos/GLES2/gl2.h" | 54 #include "third_party/khronos/GLES2/gl2.h" |
| 56 #include "third_party/khronos/GLES2/gl2ext.h" | 55 #include "third_party/khronos/GLES2/gl2ext.h" |
| 57 #include "third_party/skia/include/core/SkPicture.h" | 56 #include "third_party/skia/include/core/SkPicture.h" |
| 58 #include "ui/gfx/geometry/point_conversions.h" | 57 #include "ui/gfx/geometry/point_conversions.h" |
| 59 #include "ui/gfx/geometry/size_conversions.h" | 58 #include "ui/gfx/geometry/size_conversions.h" |
| 60 #include "ui/gfx/geometry/vector2d_conversions.h" | 59 #include "ui/gfx/geometry/vector2d_conversions.h" |
| 61 | 60 |
| (...skipping 6339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6401 EndTest(); | 6400 EndTest(); |
| 6402 } | 6401 } |
| 6403 | 6402 |
| 6404 void AfterTest() override {} | 6403 void AfterTest() override {} |
| 6405 }; | 6404 }; |
| 6406 | 6405 |
| 6407 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); | 6406 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); |
| 6408 | 6407 |
| 6409 } // namespace | 6408 } // namespace |
| 6410 } // namespace cc | 6409 } // namespace cc |
| OLD | NEW |