| 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..814c5979045869de99b2397392a44374f307c96d 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,8 +34,8 @@ class OrderedTextureMap {
|
| GLuint IdAt(size_t index);
|
|
|
| private:
|
| - typedef base::hash_map<GLuint, scoped_refptr<TestTexture>> TextureMap;
|
| - typedef std::vector<GLuint> TextureList;
|
| + using TextureMap = std::unordered_map<GLuint, scoped_refptr<TestTexture>>;
|
| + using TextureList = std::vector<GLuint>;
|
|
|
| TextureMap textures_;
|
| TextureList ordered_textures_;
|
|
|