diff options
Diffstat (limited to 'ppapi/proxy/interface_list.cc')
-rw-r--r-- | ppapi/proxy/interface_list.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc index b03ba9b..0b386aa 100644 --- a/ppapi/proxy/interface_list.cc +++ b/ppapi/proxy/interface_list.cc @@ -241,7 +241,7 @@ const void* InterfaceList::GetInterfaceForPPB(const std::string& name) const { name_to_browser_info_.find(name); if (found == name_to_browser_info_.end()) return NULL; - return found->second.interface; + return found->second.iface; } const void* InterfaceList::GetInterfaceForPPP(const std::string& name) const { @@ -249,7 +249,7 @@ const void* InterfaceList::GetInterfaceForPPP(const std::string& name) const { name_to_plugin_info_.find(name); if (found == name_to_plugin_info_.end()) return NULL; - return found->second.interface; + return found->second.iface; } void InterfaceList::AddProxy(InterfaceID id, @@ -270,16 +270,16 @@ void InterfaceList::AddProxy(InterfaceID id, void InterfaceList::AddPPB(const char* name, InterfaceID id, - const void* interface) { + const void* iface) { DCHECK(name_to_browser_info_.find(name) == name_to_browser_info_.end()); - name_to_browser_info_[name] = InterfaceInfo(id, interface); + name_to_browser_info_[name] = InterfaceInfo(id, iface); } void InterfaceList::AddPPP(const char* name, InterfaceID id, - const void* interface) { + const void* iface) { DCHECK(name_to_plugin_info_.find(name) == name_to_plugin_info_.end()); - name_to_plugin_info_[name] = InterfaceInfo(id, interface); + name_to_plugin_info_[name] = InterfaceInfo(id, iface); } void InterfaceList::AddPPB(const InterfaceProxy::Info* info) { |