summaryrefslogtreecommitdiffstats
path: root/chrome/plugin/webplugin_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/plugin/webplugin_proxy.h')
-rw-r--r--chrome/plugin/webplugin_proxy.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/plugin/webplugin_proxy.h b/chrome/plugin/webplugin_proxy.h
index af1e4b6..5bad3f9 100644
--- a/chrome/plugin/webplugin_proxy.h
+++ b/chrome/plugin/webplugin_proxy.h
@@ -5,8 +5,7 @@
#ifndef CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
#define CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
-#include <hash_map>
-
+#include "base/hash_tables.h"
#include "base/ref_counted.h"
#include "base/scoped_handle.h"
#include "chrome/common/ipc_message.h"
@@ -77,7 +76,7 @@ class WebPluginProxy : public WebPlugin {
private:
bool Send(IPC::Message* msg);
- typedef stdext::hash_map<int, WebPluginResourceClient*> ResourceClientMap;
+ typedef base::hash_map<int, WebPluginResourceClient*> ResourceClientMap;
ResourceClientMap resource_clients_;
scoped_refptr<PluginChannel> channel_;
@@ -92,4 +91,3 @@ class WebPluginProxy : public WebPlugin {
};
#endif // CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
-