summaryrefslogtreecommitdiffstats
path: root/chrome/browser/plugin_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/plugin_service.h')
-rw-r--r--chrome/browser/plugin_service.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/plugin_service.h b/chrome/browser/plugin_service.h
index ba33fd2..a28b502 100644
--- a/chrome/browser/plugin_service.h
+++ b/chrome/browser/plugin_service.h
@@ -9,9 +9,9 @@
#define CHROME_BROWSER_PLUGIN_SERVICE_H__
#include <vector>
-#include <hash_map>
#include "base/basictypes.h"
+#include "base/hash_tables.h"
#include "base/lock.h"
#include "chrome/browser/browser_process.h"
#include "webkit/glue/webplugin.h"
@@ -121,7 +121,7 @@ class PluginService {
void OnShutdown();
// mapping between plugin dll path and PluginProcessHost
- typedef stdext::hash_map<std::wstring, PluginProcessHost*> PluginMap;
+ typedef base::hash_map<std::wstring, PluginProcessHost*> PluginMap;
PluginMap plugin_hosts_;
// The main thread's message loop.
@@ -214,4 +214,3 @@ class PluginProcessHostIterator {
};
#endif // CHROME_BROWSER_PLUGIN_SERVICE_H__
-