Index: cc/test/ordered_texture_map.h |
diff --git a/cc/test/ordered_texture_map.h b/cc/test/ordered_texture_map.h |
index 8b2a6ca912b0aea5b44e6f1c6cfc31e760bbcdee..7239912219e535e073c9ec6e4f517593cf5fa374 100644 |
--- a/cc/test/ordered_texture_map.h |
+++ b/cc/test/ordered_texture_map.h |
@@ -7,9 +7,9 @@ |
#include <stddef.h> |
+#include <unordered_map> |
#include <vector> |
-#include "base/containers/hash_tables.h" |
#include "base/memory/ref_counted.h" |
#include "third_party/khronos/GLES2/gl2.h" |
@@ -34,7 +34,7 @@ class OrderedTextureMap { |
GLuint IdAt(size_t index); |
private: |
- typedef base::hash_map<GLuint, scoped_refptr<TestTexture>> TextureMap; |
+ typedef std::unordered_map<GLuint, scoped_refptr<TestTexture>> TextureMap; |
typedef std::vector<GLuint> TextureList; |
TextureMap textures_; |