| Index: ppapi/proxy/plugin_dispatcher.cc
|
| diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
|
| index 58a10174e1b476ff76dde7d19c15498e03839050..6aa6653f2091073e3656be0c97f801333e295b29 100644
|
| --- a/ppapi/proxy/plugin_dispatcher.cc
|
| +++ b/ppapi/proxy/plugin_dispatcher.cc
|
| @@ -80,9 +80,9 @@ PluginDispatcher* PluginDispatcher::GetForResource(const Resource* resource) {
|
|
|
| // static
|
| const void* PluginDispatcher::GetInterfaceFromDispatcher(
|
| - const char* interface) {
|
| + const char* dispatcher_interface) {
|
| // All interfaces the plugin requests of the browser are "PPB".
|
| - const InterfaceProxy::Info* info = GetPPBInterfaceInfo(interface);
|
| + const InterfaceProxy::Info* info = GetPPBInterfaceInfo(dispatcher_interface);
|
| if (!info)
|
| return NULL;
|
| return info->interface_ptr;
|
|
|