Chromium Code Reviews| Index: cc/layer_tree_host.h |
| diff --git a/cc/layer_tree_host.h b/cc/layer_tree_host.h |
| index e5719ec353b3c58ef38b74ef17bf70935f1efe16..5266fccb251694a06dcb30976e66540be1fd7dd9 100644 |
| --- a/cc/layer_tree_host.h |
| +++ b/cc/layer_tree_host.h |
| @@ -53,6 +53,7 @@ class PrioritizedResource; |
| class Region; |
| class ResourceProvider; |
| class ResourceUpdateQueue; |
| +class ScrollbarLayer; |
| class TopControlsManager; |
| struct ScrollAndScaleSet; |
| @@ -96,6 +97,8 @@ public: |
| void layout(); |
| void beginCommitOnImplThread(LayerTreeHostImpl*); |
| void finishCommitOnImplThread(LayerTreeHostImpl*); |
| + void setPinchZoomScrollbarsBoundsAndPosition(); |
| + void createAndAddPinchZoomScrollbars(); |
| void willCommit(); |
| void commitComplete(); |
| scoped_ptr<OutputSurface> createOutputSurface(); |
| @@ -151,6 +154,8 @@ public: |
| void setAnimationEvents(scoped_ptr<AnimationEventsVector>, base::Time wallClockTime); |
| Layer* rootLayer() { return m_rootLayer.get(); } |
| + Layer* rootScrollLayer() const; |
|
enne (OOO)
2013/03/06 19:32:58
const functions should not return non-const pointe
wjmaclean
2013/03/06 22:36:53
Done.
|
| + |
| const Layer* rootLayer() const { return m_rootLayer.get(); } |
| void setRootLayer(scoped_refptr<Layer>); |
| @@ -253,6 +258,8 @@ private: |
| scoped_refptr<Layer> m_rootLayer; |
| scoped_refptr<HeadsUpDisplayLayer> m_hudLayer; |
| + scoped_refptr<ScrollbarLayer> m_pinchZoomScrollbarHorizontal; |
| + scoped_refptr<ScrollbarLayer> m_pinchZoomScrollbarVertical; |
| scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager; |
| scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder; |