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 |