| 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 | 5 |
| 6 #ifndef ScrollbarLayerChromium_h | 6 #ifndef ScrollbarLayerChromium_h |
| 7 #define ScrollbarLayerChromium_h | 7 #define ScrollbarLayerChromium_h |
| 8 | 8 |
| 9 #include "LayerChromium.h" | |
| 10 #include "caching_bitmap_canvas_layer_texture_updater.h" | 9 #include "caching_bitmap_canvas_layer_texture_updater.h" |
| 10 #include "cc/layer.h" |
| 11 #include <public/WebScrollbar.h> | 11 #include <public/WebScrollbar.h> |
| 12 #include <public/WebScrollbarThemeGeometry.h> | 12 #include <public/WebScrollbarThemeGeometry.h> |
| 13 #include <public/WebScrollbarThemePainter.h> | 13 #include <public/WebScrollbarThemePainter.h> |
| 14 | 14 |
| 15 namespace cc { | 15 namespace cc { |
| 16 | 16 |
| 17 class Scrollbar; | 17 class Scrollbar; |
| 18 class ScrollbarThemeComposite; | 18 class ScrollbarThemeComposite; |
| 19 class CCTextureUpdateQueue; | 19 class CCTextureUpdateQueue; |
| 20 | 20 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 RefPtr<CachingBitmapCanvasLayerTextureUpdater> m_thumbUpdater; | 57 RefPtr<CachingBitmapCanvasLayerTextureUpdater> m_thumbUpdater; |
| 58 | 58 |
| 59 // All the parts of the scrollbar except the thumb | 59 // All the parts of the scrollbar except the thumb |
| 60 OwnPtr<LayerTextureUpdater::Texture> m_backTrack; | 60 OwnPtr<LayerTextureUpdater::Texture> m_backTrack; |
| 61 OwnPtr<LayerTextureUpdater::Texture> m_foreTrack; | 61 OwnPtr<LayerTextureUpdater::Texture> m_foreTrack; |
| 62 OwnPtr<LayerTextureUpdater::Texture> m_thumb; | 62 OwnPtr<LayerTextureUpdater::Texture> m_thumb; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } | 65 } |
| 66 #endif | 66 #endif |
| OLD | NEW |