summaryrefslogtreecommitdiffstats
path: root/webkit/glue/entity_map.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/entity_map.cc')
-rw-r--r--webkit/glue/entity_map.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/webkit/glue/entity_map.cc b/webkit/glue/entity_map.cc
index 77faa34..f61dfa4 100644
--- a/webkit/glue/entity_map.cc
+++ b/webkit/glue/entity_map.cc
@@ -4,15 +4,14 @@
#include "webkit/glue/entity_map.h"
-#include <hash_map>
-
#include "HTMLEntityCodes.c"
+#include "base/hash_tables.h"
#include "base/string_util.h"
namespace webkit_glue {
-typedef stdext::hash_map<wchar_t, const char*> EntityMapType;
+typedef base::hash_map<wchar_t, const char*> EntityMapType;
class EntityMapData {
public:
@@ -91,4 +90,3 @@ const char* EntityMap::GetEntityNameByCode(wchar_t code, bool is_html) {
}
} // namespace webkit_glue
-