| Index: content/browser/ppapi_plugin_process_host.h
|
| diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h
|
| index cbab68cb4021a02508f306f568879bf67f03785c..700f7278a8ab83a8021ae06cf75bf9a4bf1e12ba 100644
|
| --- a/content/browser/ppapi_plugin_process_host.h
|
| +++ b/content/browser/ppapi_plugin_process_host.h
|
| @@ -79,14 +79,15 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
|
| static PpapiPluginProcessHost* CreateBrokerHost(
|
| const PepperPluginInfo& info);
|
|
|
| - // Notification that a PP_Instance has been created for the given
|
| - // RenderView/Process pair for the given plugin. This is necessary so that
|
| - // when the plugin calls us with a PP_Instance we can find the RenderView
|
| - // associated with it without trusting the plugin.
|
| - static void DidCreateOutOfProcessInstance(int plugin_process_id,
|
| - int32 pp_instance,
|
| - int render_process_id,
|
| - int render_view_id);
|
| + // Notification that a PP_Instance has been created and the associated
|
| + // renderer related data including the RenderView/Process pair for the given
|
| + // plugin. This is necessary so that when the plugin calls us with a
|
| + // PP_Instance we can find the RenderView associated with it without trusting
|
| + // the plugin.
|
| + static void DidCreateOutOfProcessInstance(
|
| + int plugin_process_id,
|
| + int32 pp_instance,
|
| + const PepperRendererInstanceData& instance_data);
|
|
|
| // The opposite of DIdCreate... above.
|
| static void DidDeleteOutOfProcessInstance(int plugin_process_id,
|
|
|