diff options
Diffstat (limited to 'webkit/glue/plugins/plugin_lib.h')
-rw-r--r-- | webkit/glue/plugins/plugin_lib.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/webkit/glue/plugins/plugin_lib.h b/webkit/glue/plugins/plugin_lib.h index 912652b..a0a6a82 100644 --- a/webkit/glue/plugins/plugin_lib.h +++ b/webkit/glue/plugins/plugin_lib.h @@ -5,10 +5,10 @@ #ifndef WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ #define WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ -#include <hash_map> #include <string> #include "base/basictypes.h" +#include "base/hash_tables.h" #include "base/ref_counted.h" #include "base/scoped_ptr.h" #include "webkit/glue/plugins/nphostapi.h" @@ -122,7 +122,7 @@ class PluginLib : public base::RefCounted<PluginLib> { int instance_count_; // count of plugins in use // A map of all the insantiated plugins. - typedef stdext::hash_map<std::wstring, scoped_refptr<PluginLib> > PluginMap; + typedef base::hash_map<std::wstring, scoped_refptr<PluginLib> > PluginMap; static PluginMap* loaded_libs_; // C-style function pointers @@ -136,4 +136,3 @@ class PluginLib : public base::RefCounted<PluginLib> { } // namespace NPAPI #endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIB_H__ - |