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 <stddef.h> |
| 6 |
5 #include "base/containers/hash_tables.h" | 7 #include "base/containers/hash_tables.h" |
6 #include "base/thread_task_runner_handle.h" | 8 #include "base/thread_task_runner_handle.h" |
7 #include "cc/animation/scrollbar_animation_controller.h" | 9 #include "cc/animation/scrollbar_animation_controller.h" |
8 #include "cc/layers/append_quads_data.h" | 10 #include "cc/layers/append_quads_data.h" |
9 #include "cc/layers/painted_scrollbar_layer.h" | 11 #include "cc/layers/painted_scrollbar_layer.h" |
10 #include "cc/layers/painted_scrollbar_layer_impl.h" | 12 #include "cc/layers/painted_scrollbar_layer_impl.h" |
11 #include "cc/layers/scrollbar_layer_interface.h" | 13 #include "cc/layers/scrollbar_layer_interface.h" |
12 #include "cc/layers/solid_color_scrollbar_layer.h" | 14 #include "cc/layers/solid_color_scrollbar_layer.h" |
13 #include "cc/layers/solid_color_scrollbar_layer_impl.h" | 15 #include "cc/layers/solid_color_scrollbar_layer_impl.h" |
14 #include "cc/quads/solid_color_draw_quad.h" | 16 #include "cc/quads/solid_color_draw_quad.h" |
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f); | 1001 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f); |
1000 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f); | 1002 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f); |
1001 | 1003 |
1002 // Horizontal Scrollbars. | 1004 // Horizontal Scrollbars. |
1003 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f); | 1005 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f); |
1004 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f); | 1006 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f); |
1005 } | 1007 } |
1006 | 1008 |
1007 } // namespace | 1009 } // namespace |
1008 } // namespace cc | 1010 } // namespace cc |
OLD | NEW |