| 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 #ifndef CC_TREES_LAYER_TREE_HOST_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 std::unordered_map<ElementId, Layer*, ElementIdHash> element_layers_map_; | 616 std::unordered_map<ElementId, Layer*, ElementIdHash> element_layers_map_; |
| 617 | 617 |
| 618 bool in_paint_layer_contents_ = false; | 618 bool in_paint_layer_contents_ = false; |
| 619 bool in_update_property_trees_ = false; | 619 bool in_update_property_trees_ = false; |
| 620 | 620 |
| 621 MutatorHost* mutator_host_; | 621 MutatorHost* mutator_host_; |
| 622 | 622 |
| 623 std::vector<std::pair<sk_sp<const SkImage>, base::Callback<void(bool)>>> | 623 std::vector<std::pair<sk_sp<const SkImage>, base::Callback<void(bool)>>> |
| 624 queued_image_decodes_; | 624 queued_image_decodes_; |
| 625 | 625 |
| 626 bool did_navigate_ = false; |
| 627 |
| 626 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 628 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 627 }; | 629 }; |
| 628 | 630 |
| 629 } // namespace cc | 631 } // namespace cc |
| 630 | 632 |
| 631 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 633 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |