OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 #include "cc/layer_tree_impl.h" | 5 #include "cc/layer_tree_impl.h" |
6 | 6 |
7 #include "cc/layer_tree_host_common.h" | 7 #include "cc/layer_tree_host_common.h" |
8 #include "cc/layer_tree_host_impl.h" | 8 #include "cc/layer_tree_host_impl.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 153 } |
154 | 154 |
155 std::string LayerTreeImpl::layer_tree_as_text() const { | 155 std::string LayerTreeImpl::layer_tree_as_text() const { |
156 return layer_tree_host_impl_->layerTreeAsText(); | 156 return layer_tree_host_impl_->layerTreeAsText(); |
157 } | 157 } |
158 | 158 |
159 DebugRectHistory* LayerTreeImpl::debug_rect_history() const { | 159 DebugRectHistory* LayerTreeImpl::debug_rect_history() const { |
160 return layer_tree_host_impl_->debugRectHistory(); | 160 return layer_tree_host_impl_->debugRectHistory(); |
161 } | 161 } |
162 | 162 |
| 163 AnimationRegistrar* LayerTreeImpl::animationRegistrar() const { |
| 164 return layer_tree_host_impl_->animationRegistrar(); |
| 165 } |
163 | 166 |
164 } // namespace cc | 167 } // namespace cc |
OLD | NEW |