| Index: cc/layer_tree_impl.h
|
| diff --git a/cc/layer_tree_impl.h b/cc/layer_tree_impl.h
|
| index 62e01354f5530c084edfa56935937613c834b9bc..8b7c925339ebf1a9e51f2f1eed7cdbfb04202299 100644
|
| --- a/cc/layer_tree_impl.h
|
| +++ b/cc/layer_tree_impl.h
|
| @@ -40,13 +40,17 @@ class CC_EXPORT LayerTreeImpl {
|
| }
|
| virtual ~LayerTreeImpl();
|
|
|
| - // Methods called by the layer tree that pass-through to LHTI.
|
| + // Methods called by the layer tree that pass-through or access LTHI.
|
| // ---------------------------------------------------------------------------
|
| const LayerTreeSettings& settings() const;
|
| OutputSurface* output_surface() const;
|
| ResourceProvider* resource_provider() const;
|
| TileManager* tile_manager() const;
|
| FrameRateCounter* frame_rate_counter() const;
|
| + bool IsActiveTree() const;
|
| + bool IsPendingTree() const;
|
| + LayerImpl* FindActiveTreeLayerById(int id);
|
| + LayerImpl* FindPendingTreeLayerById(int id);
|
|
|
| // Tree specific methods exposed to layer-impl tree.
|
| // ---------------------------------------------------------------------------
|
|
|