| Index: chrome/browser/chrome_plugin_host.cc
|
| ===================================================================
|
| --- chrome/browser/chrome_plugin_host.cc (revision 74733)
|
| +++ chrome/browser/chrome_plugin_host.cc (working copy)
|
| @@ -702,7 +702,7 @@
|
| PluginService* service = PluginService::GetInstance();
|
| if (!service)
|
| return false;
|
| - PluginProcessHost *host = service->FindPluginProcess(plugin->filename());
|
| + PluginProcessHost *host = service->FindNpapiPluginProcess(plugin->filename());
|
| return host ? true : false;
|
| }
|
|
|
| @@ -720,7 +720,7 @@
|
| if (!service)
|
| return CPERR_FAILURE;
|
| PluginProcessHost *host =
|
| - service->FindOrStartPluginProcess(plugin->filename());
|
| + service->FindOrStartNpapiPluginProcess(plugin->filename());
|
| if (!host)
|
| return CPERR_FAILURE;
|
|
|
|
|