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; |