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

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

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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/navigation_controller.cc ('k') | content/public/browser/page_navigator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/page_navigator.h
diff --git a/content/public/browser/page_navigator.h b/content/public/browser/page_navigator.h
index b097936fcf8e6db7d1b5b97ff583b99cc142a892..d9a88c50080eb921aa600e22b72b5c4399a02ef3 100644
--- a/content/public/browser/page_navigator.h
+++ b/content/public/browser/page_navigator.h
@@ -33,6 +33,7 @@ struct CONTENT_EXPORT OpenURLParams {
OpenURLParams(const GURL& url,
const Referrer& referrer,
int64 source_frame_id,
+ int64 frame_tree_node_id,
WindowOpenDisposition disposition,
PageTransition transition,
bool is_renderer_initiated);
@@ -59,9 +60,12 @@ struct CONTENT_EXPORT OpenURLParams {
// is terminated by \r\n. May be empty if no extra headers are needed.
std::string extra_headers;
- // The source frame id or -1 to indicate the main frame.
+ // The renderer-specific source frame id or -1 to indicate the main frame.
int64 source_frame_id;
+ // The browser-global FrameTreeNode ID or -1 to indicate the main frame.
+ int64 frame_tree_node_id;
+
// The disposition requested by the navigation source.
WindowOpenDisposition disposition;
« no previous file with comments | « content/public/browser/navigation_controller.cc ('k') | content/public/browser/page_navigator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698