| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SCROLLBAR_LAYER_H_ | 5 #ifndef CC_LAYERS_PAINTED_SCROLLBAR_LAYER_H_ |
| 6 #define CC_LAYERS_PAINTED_SCROLLBAR_LAYER_H_ | 6 #define CC_LAYERS_PAINTED_SCROLLBAR_LAYER_H_ |
| 7 | 7 |
| 8 #include "cc/base/cc_export.h" | 8 #include "cc/base/cc_export.h" |
| 9 #include "cc/input/scrollbar.h" | 9 #include "cc/input/scrollbar.h" |
| 10 #include "cc/layers/contents_scaling_layer.h" | 10 #include "cc/layers/contents_scaling_layer.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 template<typename T> void UpdateProperty(T value, T* prop) { | 70 template<typename T> void UpdateProperty(T value, T* prop) { |
| 71 if (*prop == value) | 71 if (*prop == value) |
| 72 return; | 72 return; |
| 73 *prop = value; | 73 *prop = value; |
| 74 SetNeedsPushProperties(); | 74 SetNeedsPushProperties(); |
| 75 } | 75 } |
| 76 | 76 |
| 77 int MaxTextureSize(); | 77 int MaxTextureSize(); |
| 78 float ClampScaleToMaxTextureSize(float scale); | 78 float ClampScaleToMaxTextureSize(float scale); |
| 79 | 79 |
| 80 UIResourceBitmap RasterizeScrollbarPart(const gfx::Rect& rect, | 80 UIResourceBitmap RasterizeScrollbarPart(const gfx::Rect& layer_rect, |
| 81 const gfx::Rect& rect, |
| 81 ScrollbarPart part); | 82 ScrollbarPart part); |
| 82 | 83 |
| 83 scoped_ptr<Scrollbar> scrollbar_; | 84 scoped_ptr<Scrollbar> scrollbar_; |
| 84 int scroll_layer_id_; | 85 int scroll_layer_id_; |
| 85 int clip_layer_id_; | 86 int clip_layer_id_; |
| 86 | 87 |
| 87 // Snapshot of properties taken in UpdateThumbAndTrackGeometry and used in | 88 // Snapshot of properties taken in UpdateThumbAndTrackGeometry and used in |
| 88 // PushPropertiesTo. | 89 // PushPropertiesTo. |
| 89 int thumb_thickness_; | 90 int thumb_thickness_; |
| 90 int thumb_length_; | 91 int thumb_length_; |
| 91 gfx::Point location_; | 92 gfx::Point location_; |
| 92 gfx::Rect track_rect_; | 93 gfx::Rect track_rect_; |
| 93 bool is_overlay_; | 94 bool is_overlay_; |
| 94 bool has_thumb_; | 95 bool has_thumb_; |
| 95 | 96 |
| 96 scoped_ptr<ScopedUIResource> track_resource_; | 97 scoped_ptr<ScopedUIResource> track_resource_; |
| 97 scoped_ptr<ScopedUIResource> thumb_resource_; | 98 scoped_ptr<ScopedUIResource> thumb_resource_; |
| 98 | 99 |
| 99 DISALLOW_COPY_AND_ASSIGN(PaintedScrollbarLayer); | 100 DISALLOW_COPY_AND_ASSIGN(PaintedScrollbarLayer); |
| 100 }; | 101 }; |
| 101 | 102 |
| 102 } // namespace cc | 103 } // namespace cc |
| 103 | 104 |
| 104 #endif // CC_LAYERS_PAINTED_SCROLLBAR_LAYER_H_ | 105 #endif // CC_LAYERS_PAINTED_SCROLLBAR_LAYER_H_ |
| OLD | NEW |