Index: chrome/browser/guestview/guestview.h |
diff --git a/chrome/browser/guestview/guestview.h b/chrome/browser/guestview/guestview.h |
index 75db06fed0378b1fc62564a2896fde32b80e32e3..90cf2b958fa61213603f4056bd54913709a2d843 100644 |
--- a/chrome/browser/guestview/guestview.h |
+++ b/chrome/browser/guestview/guestview.h |
@@ -43,6 +43,7 @@ class GuestView : public content::BrowserPluginGuestDelegate { |
static Type GetViewTypeFromString(const std::string& api_type); |
static GuestView* Create(content::WebContents* guest_web_contents, |
Charlie Reis
2013/10/29 21:11:39
This should have a comment explaining both extensi
Fady Samuel
2013/10/30 19:48:52
I've refactored things a bit to make it so that ex
|
+ const std::string& extension_id, |
Type view_type); |
static GuestView* FromWebContents(content::WebContents* web_contents); |
@@ -89,7 +90,8 @@ class GuestView : public content::BrowserPluginGuestDelegate { |
int embedder_render_process_id() const { return embedder_render_process_id_; } |
protected: |
- explicit GuestView(content::WebContents* guest_web_contents); |
+ GuestView(content::WebContents* guest_web_contents, |
+ const std::string& extension_id); |
virtual ~GuestView(); |
// Dispatches an event |event_name| to the embedder with the |event| fields. |