Index: extensions/browser/guest_view/guest_view_base.h |
diff --git a/extensions/browser/guest_view/guest_view_base.h b/extensions/browser/guest_view/guest_view_base.h |
index 867b10cdf624bf9cae22542965086ee62a823927..483d76334eef63dba74f21cf9de29eeca6b4e8e6 100644 |
--- a/extensions/browser/guest_view/guest_view_base.h |
+++ b/extensions/browser/guest_view/guest_view_base.h |
@@ -170,12 +170,10 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate, |
// This creates a WebContents and initializes |this| GuestViewBase to use the |
// newly created WebContents. |
- void Init(const std::string& owner_extension_id, |
- const base::DictionaryValue& create_params, |
+ void Init(const base::DictionaryValue& create_params, |
const WebContentsCreatedCallback& callback); |
- void InitWithWebContents(const std::string& owner_extension_id, |
- content::WebContents* guest_web_contents); |
+ void InitWithWebContents(content::WebContents* guest_web_contents); |
bool IsViewType(const char* const view_type) const { |
return !strcmp(GetViewType(), view_type); |
@@ -276,8 +274,7 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate, |
void SendQueuedEvents(); |
- void CompleteInit(const std::string& owner_extension_id, |
- const WebContentsCreatedCallback& callback, |
+ void CompleteInit(const WebContentsCreatedCallback& callback, |
content::WebContents* guest_web_contents); |
void StartTrackingEmbedderZoomLevel(); |