| Index: content/public/browser/browser_ppapi_host.h
|
| ===================================================================
|
| --- content/public/browser/browser_ppapi_host.h (revision 241580)
|
| +++ content/public/browser/browser_ppapi_host.h (working copy)
|
| @@ -56,7 +56,7 @@
|
| // Returns true if the given PP_Instance is valid.
|
| virtual bool IsValidInstance(PP_Instance instance) const = 0;
|
|
|
| - // Retrieves the process/view Ids associated with the RenderView containing
|
| + // Retrieves the process/frame Ids associated with the RenderFrame containing
|
| // the given instance and returns true on success. If the instance is
|
| // invalid, the ids will be 0 and false will be returned.
|
| //
|
| @@ -64,10 +64,10 @@
|
| // validated, and the resource hosts will be deleted when the resource is
|
| // destroyed. So it should not generally be necessary to check for errors
|
| // from this function except as a last-minute sanity check if you convert the
|
| - // IDs to a RenderView/ProcessHost on the UI thread.
|
| - virtual bool GetRenderViewIDsForInstance(PP_Instance instance,
|
| - int* render_process_id,
|
| - int* render_view_id) const = 0;
|
| + // IDs to a RenderFrame/ProcessHost on the UI thread.
|
| + virtual bool GetRenderFrameIDsForInstance(PP_Instance instance,
|
| + int* render_process_id,
|
| + int* render_frame_id) const = 0;
|
|
|
| // Returns the name of the plugin.
|
| virtual const std::string& GetPluginName() = 0;
|
|
|