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/trees/layer_tree_impl.h" | 5 #include "cc/trees/layer_tree_impl.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "cc/animation/keyframed_animation_curve.h" | 8 #include "cc/animation/keyframed_animation_curve.h" |
9 #include "cc/animation/scrollbar_animation_controller.h" | 9 #include "cc/animation/scrollbar_animation_controller.h" |
10 #include "cc/debug/traced_value.h" | 10 #include "cc/debug/traced_value.h" |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 | 557 |
558 const ui::LatencyInfo& LayerTreeImpl::GetLatencyInfo() { | 558 const ui::LatencyInfo& LayerTreeImpl::GetLatencyInfo() { |
559 return latency_info_; | 559 return latency_info_; |
560 } | 560 } |
561 | 561 |
562 void LayerTreeImpl::ClearLatencyInfo() { | 562 void LayerTreeImpl::ClearLatencyInfo() { |
563 latency_info_.Clear(); | 563 latency_info_.Clear(); |
564 } | 564 } |
565 | 565 |
566 void LayerTreeImpl::WillModifyTilePriorities() { | 566 void LayerTreeImpl::WillModifyTilePriorities() { |
567 layer_tree_host_impl_->tile_manager()->WillModifyTilePriorities(); | 567 layer_tree_host_impl_->SetNeedsManageTiles(); |
568 } | 568 } |
569 | 569 |
570 } // namespace cc | 570 } // namespace cc |
OLD | NEW |