| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "cc/test/fake_proxy.h" | 42 #include "cc/test/fake_proxy.h" |
| 43 #include "cc/test/fake_scoped_ui_resource.h" | 43 #include "cc/test/fake_scoped_ui_resource.h" |
| 44 #include "cc/test/fake_video_frame_provider.h" | 44 #include "cc/test/fake_video_frame_provider.h" |
| 45 #include "cc/test/geometry_test_utils.h" | 45 #include "cc/test/geometry_test_utils.h" |
| 46 #include "cc/test/layer_tree_test.h" | 46 #include "cc/test/layer_tree_test.h" |
| 47 #include "cc/test/test_shared_bitmap_manager.h" | 47 #include "cc/test/test_shared_bitmap_manager.h" |
| 48 #include "cc/test/test_web_graphics_context_3d.h" | 48 #include "cc/test/test_web_graphics_context_3d.h" |
| 49 #include "cc/trees/layer_tree_host_impl.h" | 49 #include "cc/trees/layer_tree_host_impl.h" |
| 50 #include "cc/trees/layer_tree_impl.h" | 50 #include "cc/trees/layer_tree_impl.h" |
| 51 #include "cc/trees/single_thread_proxy.h" | 51 #include "cc/trees/single_thread_proxy.h" |
| 52 #include "cc/trees/thread_proxy.h" |
| 52 #include "gpu/GLES2/gl2extchromium.h" | 53 #include "gpu/GLES2/gl2extchromium.h" |
| 53 #include "skia/ext/refptr.h" | 54 #include "skia/ext/refptr.h" |
| 54 #include "testing/gmock/include/gmock/gmock.h" | 55 #include "testing/gmock/include/gmock/gmock.h" |
| 55 #include "third_party/khronos/GLES2/gl2.h" | 56 #include "third_party/khronos/GLES2/gl2.h" |
| 56 #include "third_party/khronos/GLES2/gl2ext.h" | 57 #include "third_party/khronos/GLES2/gl2ext.h" |
| 57 #include "third_party/skia/include/core/SkPicture.h" | 58 #include "third_party/skia/include/core/SkPicture.h" |
| 58 #include "ui/gfx/geometry/point_conversions.h" | 59 #include "ui/gfx/geometry/point_conversions.h" |
| 59 #include "ui/gfx/geometry/size_conversions.h" | 60 #include "ui/gfx/geometry/size_conversions.h" |
| 60 #include "ui/gfx/geometry/vector2d_conversions.h" | 61 #include "ui/gfx/geometry/vector2d_conversions.h" |
| 61 | 62 |
| (...skipping 6483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6545 EndTest(); | 6546 EndTest(); |
| 6546 } | 6547 } |
| 6547 | 6548 |
| 6548 void AfterTest() override {} | 6549 void AfterTest() override {} |
| 6549 }; | 6550 }; |
| 6550 | 6551 |
| 6551 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); | 6552 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); |
| 6552 | 6553 |
| 6553 } // namespace | 6554 } // namespace |
| 6554 } // namespace cc | 6555 } // namespace cc |
| OLD | NEW |