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 #if USE(ACCELERATED_COMPOSITING) | 9 #if USE(ACCELERATED_COMPOSITING) |
10 | 10 |
11 #include "LayerChromium.h" | 11 #include "LayerChromium.h" |
12 #include "caching_bitmap_canvas_layer_texture_updater.h" | 12 #include "caching_bitmap_canvas_layer_texture_updater.h" |
13 #include <public/WebScrollbar.h> | 13 #include <public/WebScrollbar.h> |
14 #include <public/WebScrollbarThemeGeometry.h> | 14 #include <public/WebScrollbarThemeGeometry.h> |
15 #include <public/WebScrollbarThemePainter.h> | 15 #include <public/WebScrollbarThemePainter.h> |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 | 18 |
19 class Scrollbar; | 19 class Scrollbar; |
20 class ScrollbarThemeComposite; | 20 class ScrollbarThemeComposite; |
21 class CCTextureUpdateQueue; | 21 class CCTextureUpdateQueue; |
22 | 22 |
23 class ScrollbarLayerChromium : public LayerChromium { | 23 class ScrollbarLayerChromium : public LayerChromium { |
24 public: | 24 public: |
25 virtual PassOwnPtr<CCLayerImpl> createCCLayerImpl() OVERRIDE; | 25 virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE; |
26 | 26 |
27 static scoped_refptr<ScrollbarLayerChromium> create(PassOwnPtr<WebKit::WebSc
rollbar>, WebKit::WebScrollbarThemePainter, PassOwnPtr<WebKit::WebScrollbarTheme
Geometry>, int scrollLayerId); | 27 static scoped_refptr<ScrollbarLayerChromium> create(PassOwnPtr<WebKit::WebSc
rollbar>, WebKit::WebScrollbarThemePainter, PassOwnPtr<WebKit::WebScrollbarTheme
Geometry>, int scrollLayerId); |
28 | 28 |
29 // LayerChromium interface | 29 // LayerChromium interface |
30 virtual bool needsContentsScale() const OVERRIDE; | 30 virtual bool needsContentsScale() const OVERRIDE; |
31 virtual IntSize contentBounds() const OVERRIDE; | 31 virtual IntSize contentBounds() const OVERRIDE; |
32 virtual void setTexturePriorities(const CCPriorityCalculator&) OVERRIDE; | 32 virtual void setTexturePriorities(const CCPriorityCalculator&) OVERRIDE; |
33 virtual void update(CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRend
eringStats&) OVERRIDE; | 33 virtual void update(CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRend
eringStats&) OVERRIDE; |
34 virtual void setLayerTreeHost(CCLayerTreeHost*) OVERRIDE; | 34 virtual void setLayerTreeHost(CCLayerTreeHost*) OVERRIDE; |
35 virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE; | 35 virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE; |
(...skipping 25 matching lines...) Expand all Loading... |
61 // All the parts of the scrollbar except the thumb | 61 // All the parts of the scrollbar except the thumb |
62 OwnPtr<LayerTextureUpdater::Texture> m_backTrack; | 62 OwnPtr<LayerTextureUpdater::Texture> m_backTrack; |
63 OwnPtr<LayerTextureUpdater::Texture> m_foreTrack; | 63 OwnPtr<LayerTextureUpdater::Texture> m_foreTrack; |
64 OwnPtr<LayerTextureUpdater::Texture> m_thumb; | 64 OwnPtr<LayerTextureUpdater::Texture> m_thumb; |
65 }; | 65 }; |
66 | 66 |
67 } | 67 } |
68 #endif // USE(ACCELERATED_COMPOSITING) | 68 #endif // USE(ACCELERATED_COMPOSITING) |
69 | 69 |
70 #endif | 70 #endif |
OLD | NEW |