| Index: cc/trees/layer_tree_host.h
|
| diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
|
| index 7581ff2cac9f128d6f45f4188f076f741ceea9a5..26560e7facc54de59aeac0c710b117231a05baf0 100644
|
| --- a/cc/trees/layer_tree_host.h
|
| +++ b/cc/trees/layer_tree_host.h
|
| @@ -351,6 +351,10 @@ class CC_EXPORT LayerTreeHost : public MutatorHostClient {
|
|
|
| Layer* LayerById(int id) const;
|
|
|
| + Layer* LayerByElementId(ElementId element_id) const;
|
| + void AddToElementMap(Layer* layer);
|
| + void RemoveFromElementMap(Layer* layer);
|
| +
|
| void AddLayerShouldPushProperties(Layer* layer);
|
| void RemoveLayerShouldPushProperties(Layer* layer);
|
| std::unordered_set<Layer*>& LayersThatShouldPushProperties();
|
| @@ -424,6 +428,8 @@ class CC_EXPORT LayerTreeHost : public MutatorHostClient {
|
| bool IsRemoteClient() const;
|
| void BuildPropertyTreesForTesting();
|
|
|
| + void SetElementIdsForTesting();
|
| +
|
| ImageSerializationProcessor* image_serialization_processor() const {
|
| return image_serialization_processor_;
|
| }
|
| @@ -601,6 +607,10 @@ class CC_EXPORT LayerTreeHost : public MutatorHostClient {
|
|
|
| using LayerIdMap = std::unordered_map<int, Layer*>;
|
| LayerIdMap layer_id_map_;
|
| +
|
| + using ElementLayersMap = std::unordered_map<ElementId, Layer*, ElementIdHash>;
|
| + ElementLayersMap element_layers_map_;
|
| +
|
| // Set of layers that need to push properties.
|
| std::unordered_set<Layer*> layers_that_should_push_properties_;
|
|
|
|
|