Chromium Code Reviews| Index: extensions/browser/guest_view/app_view/app_view_guest.h |
| diff --git a/extensions/browser/guest_view/app_view/app_view_guest.h b/extensions/browser/guest_view/app_view/app_view_guest.h |
| index 81cf44de0d745606a717b4e6b02be583bc753e99..9978415754a949c7bf10f3ba0dea4926ccebfdf0 100644 |
| --- a/extensions/browser/guest_view/app_view/app_view_guest.h |
| +++ b/extensions/browser/guest_view/app_view/app_view_guest.h |
| @@ -22,15 +22,19 @@ class AppViewGuest : public guest_view::GuestView<AppViewGuest> { |
| static const char Type[]; |
| // Completes the creation of a WebContents associated with the provided |
| - // |guest_extensions_id|. |
| + // |guest_extensions_id|. |guest_render_process_host| is the RenderProcessHost |
| + // for the guest contents calling this method. |
|
lfg
2015/07/06 18:46:21
I know it's not part of your modifications, but co
EhsanK
2015/07/06 21:09:59
Sure. Done.
|
| static bool CompletePendingRequest( |
| content::BrowserContext* browser_context, |
| const GURL& url, |
| int guest_instance_id, |
| - const std::string& guest_extension_id); |
| + const std::string& guest_extension_id, |
| + content::RenderProcessHost* guest_render_process_host); |
| static GuestViewBase* Create(content::WebContents* owner_web_contents); |
| + static std::vector<int> GetAllRegisteredInstanceIdsForTesting(); |
| + |
| // content::WebContentsDelegate implementation. |
| bool HandleContextMenu(const content::ContextMenuParams& params) override; |
| void RequestMediaAccessPermission( |