summaryrefslogtreecommitdiffstats
path: root/content/public/browser/web_contents.h
diff options
context:
space:
mode:
authornasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-31 22:43:04 +0000
committernasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-31 22:43:04 +0000
commit227692c5deb033cd21a89573b4b16ca20a345811 (patch)
tree14ab87198605cad1f4b41a13c92d1b434909e64e /content/public/browser/web_contents.h
parentd5023e98df77204c2d0a27000ddf7cfeaec02a32 (diff)
downloadchromium_src-227692c5deb033cd21a89573b4b16ca20a345811.zip
chromium_src-227692c5deb033cd21a89573b4b16ca20a345811.tar.gz
chromium_src-227692c5deb033cd21a89573b4b16ca20a345811.tar.bz2
Create RenderFrame/RenderFrameHost for the main frame of a page.
This CL is the first in a series that will move frame specific functionality from RenderView/RenderViewHost to RenderFrame/RenderFrameHost. In this change, I'm only creating the objects for the top level frame and keeping them as members of RenderView/RenderViewHost for now. BUG=245126 Review URL: https://chromiumcodereview.appspot.com/16032007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/web_contents.h')
-rw-r--r--content/public/browser/web_contents.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index caaee98..ebf2352 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -78,6 +78,7 @@ class WebContents : public PageNavigator,
BrowserContext* browser_context;
SiteInstance* site_instance;
int routing_id;
+ int main_frame_routing_id;
// Initial size of the new WebContent's view. Can be (0, 0) if not needed.
gfx::Size initial_size;