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

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

Issue 10378089: Browser Plugin: Removed BrowserPluginWebContentsObserver (to be replaced by rewritten BrowserPlugi… (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Default to 0 Ids in IntersitialPageImpl 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
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 98934b7bd23168b6d5f4133308dc18de860f4806..ee8198402e82e1c611f1b331e2783466b27c12cb 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;
jam 2012/05/11 22:06:43 1) only stuff used by embedders of content should
Fady Samuel 2012/05/11 22:08:01 Yup, just got rid of it. This is not absolutely ne
jam 2012/05/14 04:48:15 what I meant by 2 is that the whole concept of pen
+
// 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;

Powered by Google App Engine
This is Rietveld 408576698