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

Unified Diff: cc/trees/layer_tree_host.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_host.h
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
index 9ecdc776eadcaeaf1c5468fb355856a6d9fed88d..67a76d0cb4ba27ca81d18216750dd4b56265ca6b 100644
--- a/cc/trees/layer_tree_host.h
+++ b/cc/trees/layer_tree_host.h
@@ -609,7 +609,7 @@ class CC_EXPORT LayerTreeHost : public NON_EXPORTED_BASE(SurfaceReferenceOwner),
// Layer id to Layer map.
std::unordered_map<int, Layer*> layer_id_map_;
- std::unordered_map<ElementId, Layer*, ElementIdHash> element_layers_map_;
+ std::unordered_map<ElementId, Layer*> element_layers_map_;
bool in_paint_layer_contents_ = false;
bool in_update_property_trees_ = false;

Powered by Google App Engine
This is Rietveld 408576698