| Index: cc/trees/layer_tree_impl.h
|
| diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
|
| index a14541d93473cd5c04328494496d7b93a31d2d68..13bbc8d6585f32f8e179450170a1ad911b9ea08d 100644
|
| --- a/cc/trees/layer_tree_impl.h
|
| +++ b/cc/trees/layer_tree_impl.h
|
| @@ -42,8 +42,8 @@ class CC_EXPORT LayerTreeImpl {
|
| public:
|
| typedef std::vector<LayerImpl*> LayerList;
|
|
|
| - static scoped_ptr<LayerTreeImpl> create(LayerTreeHostImpl* layer_tree_host_impl)
|
| - {
|
| + static scoped_ptr<LayerTreeImpl> create(
|
| + LayerTreeHostImpl* layer_tree_host_impl) {
|
| return make_scoped_ptr(new LayerTreeImpl(layer_tree_host_impl));
|
| }
|
| virtual ~LayerTreeImpl();
|
| @@ -51,7 +51,7 @@ class CC_EXPORT LayerTreeImpl {
|
| // Methods called by the layer tree that pass-through or access LTHI.
|
| // ---------------------------------------------------------------------------
|
| const LayerTreeSettings& settings() const;
|
| - const RendererCapabilities& rendererCapabilities() const;
|
| + const RendererCapabilities& GetRendererCapabilities() const;
|
| OutputSurface* output_surface() const;
|
| ResourceProvider* resource_provider() const;
|
| TileManager* tile_manager() const;
|
| @@ -172,7 +172,7 @@ class CC_EXPORT LayerTreeImpl {
|
|
|
| AnimationRegistrar* animationRegistrar() const;
|
|
|
| - void PushPersistedState(LayerTreeImpl* pendingTree);
|
| + void PushPersistedState(LayerTreeImpl* pending_tree);
|
|
|
| void DidBecomeActive();
|
|
|
|
|