| Index: ppapi/proxy/interface_list.cc
|
| ===================================================================
|
| --- ppapi/proxy/interface_list.cc (revision 100758)
|
| +++ ppapi/proxy/interface_list.cc (working copy)
|
| @@ -241,7 +241,7 @@
|
| 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 @@
|
| 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::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) {
|
|
|