diff options
Diffstat (limited to 'content/common/np_channel_base.cc')
-rw-r--r-- | content/common/np_channel_base.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/common/np_channel_base.cc b/content/common/np_channel_base.cc index 509c341..2c24435 100644 --- a/content/common/np_channel_base.cc +++ b/content/common/np_channel_base.cc @@ -16,6 +16,8 @@ #include "ipc/ipc_channel_posix.h" #endif +namespace content { + typedef base::hash_map<std::string, scoped_refptr<NPChannelBase> > ChannelMap; static base::LazyInstance<ChannelMap>::Leaky g_channels = LAZY_INSTANCE_INITIALIZER; @@ -300,3 +302,5 @@ void NPChannelBase::RemoveMappingForNPObjectStub(int route_id, void NPChannelBase::RemoveMappingForNPObjectProxy(int route_id) { proxy_map_.erase(route_id); } + +} // namespace content |