Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1584)

Unified Diff: cc/trees/layer_tree_impl.h

Issue 2860293002: Change cc::ElementId to be a uint64_t (Closed)
Patch Set: none Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index feb3e5ae06de9376ff142d13b137263d7c505911..d143fbafac09918f88937d87cfe4af296148ad1d 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -517,13 +517,12 @@ class CC_EXPORT LayerTreeImpl {
// Set of layers that need to push properties.
std::unordered_set<LayerImpl*> layers_that_should_push_properties_;
- std::unordered_map<ElementId, int, ElementIdHash> element_layers_map_;
+ std::unordered_map<ElementId, int> element_layers_map_;
- std::unordered_map<ElementId, float, ElementIdHash>
- element_id_to_opacity_animations_;
- std::unordered_map<ElementId, gfx::Transform, ElementIdHash>
+ std::unordered_map<ElementId, float> element_id_to_opacity_animations_;
+ std::unordered_map<ElementId, gfx::Transform>
element_id_to_transform_animations_;
- std::unordered_map<ElementId, FilterOperations, ElementIdHash>
+ std::unordered_map<ElementId, FilterOperations>
element_id_to_filter_animations_;
// Maps from clip layer ids to scroll layer ids. Note that this only includes

Powered by Google App Engine
This is Rietveld 408576698