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

Unified Diff: cc/animation/layer_tree_mutation.h

Issue 1587283002: Switch cc to std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unordered-map
Patch Set: Created 4 years, 11 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/animation/layer_tree_mutation.h
diff --git a/cc/animation/layer_tree_mutation.h b/cc/animation/layer_tree_mutation.h
index 0fdd592f823b1f0f48f04106a23025188334890a..93f56ed870ca3cd00f8d549a4ab6df714ed253dc 100644
--- a/cc/animation/layer_tree_mutation.h
+++ b/cc/animation/layer_tree_mutation.h
@@ -5,7 +5,8 @@
#ifndef CC_ANIMATION_LAYER_TREE_MUTATION_H_
#define CC_ANIMATION_LAYER_TREE_MUTATION_H_
-#include "base/containers/hash_tables.h"
+#include <unordered_map>
+
#include "cc/animation/mutable_properties.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
@@ -56,7 +57,7 @@ class LayerTreeMutation {
SkMatrix44 transform_;
};
-typedef base::hash_map<uint64_t, LayerTreeMutation> LayerTreeMutationMap;
+typedef std::unordered_map<uint64_t, LayerTreeMutation> LayerTreeMutationMap;
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698