| 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_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1434 | 1434 |
| 1435 LayerListReverseIterator<Layer> LayerTreeHost::rend() { | 1435 LayerListReverseIterator<Layer> LayerTreeHost::rend() { |
| 1436 return LayerListReverseIterator<Layer>(nullptr); | 1436 return LayerListReverseIterator<Layer>(nullptr); |
| 1437 } | 1437 } |
| 1438 | 1438 |
| 1439 void LayerTreeHost::SetNeedsDisplayOnAllLayers() { | 1439 void LayerTreeHost::SetNeedsDisplayOnAllLayers() { |
| 1440 for (auto* layer : *this) | 1440 for (auto* layer : *this) |
| 1441 layer->SetNeedsDisplay(); | 1441 layer->SetNeedsDisplay(); |
| 1442 } | 1442 } |
| 1443 | 1443 |
| 1444 void LayerTreeHost::SetHasCopyRequest(bool has_copy_request) { |
| 1445 has_copy_request_ = has_copy_request; |
| 1446 } |
| 1447 |
| 1444 } // namespace cc | 1448 } // namespace cc |
| OLD | NEW |