commit | c9f51dd496f8f869302338b5641a01836cb83dd4 | [log] [tgz] |
---|---|---|
author | nasko <[email protected]> | Wed May 13 00:39:28 2015 |
committer | Commit bot <[email protected]> | Wed May 13 00:39:52 2015 |
tree | 40638cd53542080b9311efe1edd27171ad013498 | |
parent | 3de51de0426a9063026d21e60072b1b6bed4a2df [diff] [blame] |
Fix setting the top-level FrameTreeNode name for named windows. BUG=486889 Review URL: https://codereview.chromium.org/1141453003 Cr-Commit-Position: refs/heads/master@{#329543}
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h index a28df1c..62f09a8 100644 --- a/content/public/browser/web_contents.h +++ b/content/public/browser/web_contents.h
@@ -110,6 +110,11 @@ int routing_id; int main_frame_routing_id; + // The name of the top-level frame of the new window. It is non-empty + // when creating a named window (e.g. <a target="foo"> or + // window.open('', 'bar')). + std::string main_frame_name; + // Initial size of the new WebContent's view. Can be (0, 0) if not needed. gfx::Size initial_size;