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

Unified Diff: content/public/browser/web_contents.h

Issue 9609008: Implemented Browser Plugin (NOT FOR REVIEW) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge with ToT. GuestToEmbedderChannel is now Dispatcher. Created 8 years, 7 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
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 024d65186067443a630e710856a0e1995c59bf61..ae4e43ba4e504e18f2d08b5bb547cc58f7b25d8f 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -98,9 +98,15 @@ class WebContents : public PageNavigator {
// these may change over time.
virtual RenderProcessHost* GetRenderProcessHost() const = 0;
+ // Gets the pending RenderProcessHost for this tab.
+ virtual RenderProcessHost* GetPendingRenderProcessHost() const = 0;
+
// Gets the current RenderViewHost for this tab.
virtual RenderViewHost* GetRenderViewHost() const = 0;
+ // Gets the pending RenderViewHost for this tab.
+ virtual RenderViewHost* GetPendingRenderViewHost() const = 0;
+
// Returns the currently active RenderWidgetHostView. This may change over
// time and can be NULL (during setup and teardown).
virtual content::RenderWidgetHostView* GetRenderWidgetHostView() const = 0;
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698