OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ | 5 #ifndef CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ |
6 #define CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ | 6 #define CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/cc_export.h" |
10 #include "cc/input/scrollbar.h" | 10 #include "cc/input/scrollbar.h" |
11 #include "cc/layers/scrollbar_layer_impl_base.h" | 11 #include "cc/layers/scrollbar_layer_impl_base.h" |
12 #include "cc/quads/nine_patch_generator.h" | 12 #include "cc/quads/nine_patch_generator.h" |
13 #include "cc/resources/ui_resource_client.h" | 13 #include "cc/resources/ui_resource_client.h" |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 | 16 |
17 class LayerTreeImpl; | 17 class LayerTreeImpl; |
18 | 18 |
19 class CC_EXPORT PaintedOverlayScrollbarLayerImpl | 19 class CC_EXPORT PaintedOverlayScrollbarLayerImpl |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 gfx::Size image_bounds_; | 73 gfx::Size image_bounds_; |
74 gfx::Rect aperture_; | 74 gfx::Rect aperture_; |
75 | 75 |
76 NinePatchGenerator quad_generator_; | 76 NinePatchGenerator quad_generator_; |
77 | 77 |
78 DISALLOW_COPY_AND_ASSIGN(PaintedOverlayScrollbarLayerImpl); | 78 DISALLOW_COPY_AND_ASSIGN(PaintedOverlayScrollbarLayerImpl); |
79 }; | 79 }; |
80 | 80 |
81 } // namespace cc | 81 } // namespace cc |
82 #endif // CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ | 82 #endif // CC_LAYERS_PAINTED_OVERLAY_SCROLLBAR_LAYER_IMPL_H_ |
OLD | NEW |