| Index: cc/layer_tree_host_impl.h
|
| diff --git a/cc/layer_tree_host_impl.h b/cc/layer_tree_host_impl.h
|
| index 6fab629744978c64cc71946d1cec8a1bfa005ebc..c73f42805c9d3171bf9ad892e5f227c112b55975 100644
|
| --- a/cc/layer_tree_host_impl.h
|
| +++ b/cc/layer_tree_host_impl.h
|
| @@ -203,6 +203,7 @@ public:
|
| void readback(void* pixels, const gfx::Rect&);
|
|
|
| LayerTreeImpl* activeTree() { return m_activeTree.get(); }
|
| + LayerTreeImpl* pendingTree() { return m_pendingTree.get(); }
|
|
|
| // TODO(nduca): Remove these in favor of LayerTreeImpl.
|
| void setRootLayer(scoped_ptr<LayerImpl>);
|
| @@ -351,6 +352,7 @@ private:
|
| scoped_ptr<Renderer> m_renderer;
|
| scoped_ptr<TileManager> m_tileManager;
|
|
|
| + scoped_ptr<LayerTreeImpl> m_pendingTree;
|
| scoped_ptr<LayerTreeImpl> m_activeTree;
|
|
|
| bool m_scrollDeltaIsInViewportSpace;
|
|
|