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

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

Issue 16032007: Create RenderFrame/RenderFrameHost for the main frame of a page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing routing ID expectations. Created 7 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/public/browser/web_contents.h ('k') | content/public/renderer/render_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents.cc
diff --git a/content/public/browser/web_contents.cc b/content/public/browser/web_contents.cc
index 0c27483386cb0c155a692933e78a89a8cea313ec..f4de54a993e34570f050de21c5d5aae3f3a42263 100644
--- a/content/public/browser/web_contents.cc
+++ b/content/public/browser/web_contents.cc
@@ -12,6 +12,7 @@ WebContents::CreateParams::CreateParams(BrowserContext* context)
: browser_context(context),
site_instance(NULL),
routing_id(MSG_ROUTING_NONE),
+ main_frame_routing_id(MSG_ROUTING_NONE),
context(NULL) {}
WebContents::CreateParams::CreateParams(
@@ -19,6 +20,7 @@ WebContents::CreateParams::CreateParams(
: browser_context(context),
site_instance(site),
routing_id(MSG_ROUTING_NONE),
+ main_frame_routing_id(MSG_ROUTING_NONE),
context(NULL) {}
} // namespace content
« no previous file with comments | « content/public/browser/web_contents.h ('k') | content/public/renderer/render_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698