diff options
Diffstat (limited to 'chrome/plugin/plugin_channel_base.cc')
-rw-r--r-- | chrome/plugin/plugin_channel_base.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/plugin/plugin_channel_base.cc b/chrome/plugin/plugin_channel_base.cc index 49a91fe..c44c52e 100644 --- a/chrome/plugin/plugin_channel_base.cc +++ b/chrome/plugin/plugin_channel_base.cc @@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include <hash_map> #include <windows.h> #include "chrome/plugin/plugin_channel_base.h" +#include "base/hash_tables.h" #include "chrome/common/ipc_sync_message.h" #include "chrome/plugin/plugin_process.h" -typedef stdext::hash_map<std::wstring, scoped_refptr<PluginChannelBase> > +typedef base::hash_map<std::wstring, scoped_refptr<PluginChannelBase> > PluginChannelMap; static PluginChannelMap g_plugin_channels_; @@ -191,4 +191,3 @@ void PluginChannelBase::OnChannelError() { void PluginChannelBase::SendUnblockingOnlyDuringDispatch() { send_unblocking_only_during_dispatch_ = true; } - |