OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "base/containers/hash_tables.h" | 5 #include "base/containers/hash_tables.h" |
6 #include "cc/animation/scrollbar_animation_controller.h" | 6 #include "cc/animation/scrollbar_animation_controller.h" |
7 #include "cc/debug/test_web_graphics_context_3d.h" | |
8 #include "cc/layers/append_quads_data.h" | 7 #include "cc/layers/append_quads_data.h" |
9 #include "cc/layers/painted_scrollbar_layer.h" | 8 #include "cc/layers/painted_scrollbar_layer.h" |
10 #include "cc/layers/painted_scrollbar_layer_impl.h" | 9 #include "cc/layers/painted_scrollbar_layer_impl.h" |
11 #include "cc/layers/scrollbar_layer_interface.h" | 10 #include "cc/layers/scrollbar_layer_interface.h" |
12 #include "cc/layers/solid_color_scrollbar_layer.h" | 11 #include "cc/layers/solid_color_scrollbar_layer.h" |
13 #include "cc/layers/solid_color_scrollbar_layer_impl.h" | 12 #include "cc/layers/solid_color_scrollbar_layer_impl.h" |
14 #include "cc/quads/solid_color_draw_quad.h" | 13 #include "cc/quads/solid_color_draw_quad.h" |
15 #include "cc/resources/resource_update_queue.h" | 14 #include "cc/resources/resource_update_queue.h" |
16 #include "cc/test/fake_impl_proxy.h" | 15 #include "cc/test/fake_impl_proxy.h" |
17 #include "cc/test/fake_layer_tree_host.h" | 16 #include "cc/test/fake_layer_tree_host.h" |
18 #include "cc/test/fake_layer_tree_host_client.h" | 17 #include "cc/test/fake_layer_tree_host_client.h" |
19 #include "cc/test/fake_layer_tree_host_impl.h" | 18 #include "cc/test/fake_layer_tree_host_impl.h" |
20 #include "cc/test/fake_painted_scrollbar_layer.h" | 19 #include "cc/test/fake_painted_scrollbar_layer.h" |
21 #include "cc/test/fake_scrollbar.h" | 20 #include "cc/test/fake_scrollbar.h" |
22 #include "cc/test/geometry_test_utils.h" | 21 #include "cc/test/geometry_test_utils.h" |
23 #include "cc/test/layer_tree_test.h" | 22 #include "cc/test/layer_tree_test.h" |
24 #include "cc/test/mock_quad_culler.h" | 23 #include "cc/test/mock_quad_culler.h" |
| 24 #include "cc/test/test_web_graphics_context_3d.h" |
25 #include "cc/trees/layer_tree_host.h" | 25 #include "cc/trees/layer_tree_host.h" |
26 #include "cc/trees/layer_tree_impl.h" | 26 #include "cc/trees/layer_tree_impl.h" |
27 #include "cc/trees/single_thread_proxy.h" | 27 #include "cc/trees/single_thread_proxy.h" |
28 #include "cc/trees/tree_synchronizer.h" | 28 #include "cc/trees/tree_synchronizer.h" |
29 #include "testing/gmock/include/gmock/gmock.h" | 29 #include "testing/gmock/include/gmock/gmock.h" |
30 #include "testing/gtest/include/gtest/gtest.h" | 30 #include "testing/gtest/include/gtest/gtest.h" |
31 | 31 |
32 namespace cc { | 32 namespace cc { |
33 namespace { | 33 namespace { |
34 | 34 |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 TEST_F(ScaledScrollbarLayerTestResourceCreation, ScaledResourceUpload) { | 729 TEST_F(ScaledScrollbarLayerTestResourceCreation, ScaledResourceUpload) { |
730 // Pick a test scale that moves the scrollbar's (non-zero) position to | 730 // Pick a test scale that moves the scrollbar's (non-zero) position to |
731 // a non-pixel-aligned location. | 731 // a non-pixel-aligned location. |
732 TestResourceUpload(.041f); | 732 TestResourceUpload(.041f); |
733 TestResourceUpload(1.41f); | 733 TestResourceUpload(1.41f); |
734 TestResourceUpload(4.1f); | 734 TestResourceUpload(4.1f); |
735 } | 735 } |
736 | 736 |
737 } // namespace | 737 } // namespace |
738 } // namespace cc | 738 } // namespace cc |
OLD | NEW |