Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: content/browser/browser_plugin/browser_plugin_embedder.h

Issue 11748034: Browser Plugin: Refactor BrowserPluginEmbedder to allow creating guests with openers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_embedder.h
diff --git a/content/browser/browser_plugin/browser_plugin_embedder.h b/content/browser/browser_plugin/browser_plugin_embedder.h
index b4e846aef1c953bbb254d29e1d00dbae8a61e552..e33fba89ca9f7337ea00aca04722d01dd33726bf 100644
--- a/content/browser/browser_plugin/browser_plugin_embedder.h
+++ b/content/browser/browser_plugin/browser_plugin_embedder.h
@@ -57,6 +57,19 @@ class CONTENT_EXPORT BrowserPluginEmbedder : public WebContentsObserver,
static BrowserPluginEmbedder* Create(WebContentsImpl* web_contents,
RenderViewHost* render_view_host);
+ void CreateGuest(int instance_id,
sadrul 2013/01/07 15:09:54 Doc
Fady Samuel 2013/01/08 17:00:49 Done.
+ int routing_id,
+ BrowserPluginGuest* guest_opener,
+ const BrowserPluginHostMsg_CreateGuest_Params& params);
+
+ // Returns a guest browser plugin delegate by its container ID specified
+ // in BrowserPlugin.
+ BrowserPluginGuest* GetGuestByInstanceID(int instance_id) const;
+
+ // Destroy the guest with the provided |instance_id|. Remove references to the
+ // guest in this BrowserPluginEmbedder.
+ void DestroyGuestByInstanceID(int instance_id);
sadrul 2013/01/07 15:09:54 It doesn't look like either GuestGuestByInstanceID
Fady Samuel 2013/01/08 17:00:49 This will be used by follow-on patches. I am makin
+
// Overrides factory for testing. Default (NULL) value indicates regular
// (non-test) environment.
static void set_factory_for_testing(BrowserPluginHostFactory* factory) {
@@ -89,12 +102,8 @@ class CONTENT_EXPORT BrowserPluginEmbedder : public WebContentsObserver,
BrowserPluginEmbedder(WebContentsImpl* web_contents,
RenderViewHost* render_view_host);
- // Returns a guest browser plugin delegate by its container ID specified
- // in BrowserPlugin.
- BrowserPluginGuest* GetGuestByInstanceID(int instance_id) const;
// Adds a new guest web_contents to the embedder (overridable in test).
virtual void AddGuest(int instance_id, WebContents* guest_web_contents);
- void DestroyGuestByInstanceID(int instance_id);
void CleanUp();
// Called when visiblity of web_contents changes, so the embedder will

Powered by Google App Engine
This is Rietveld 408576698