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

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

Issue 2686943002: New WebContents created via ctrl-click should be in a new process. (Closed)
Patch Set: s/renderer/process/ in the field name + initializing the field and variables. Created 3 years, 8 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/page_navigator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/page_navigator.cc
diff --git a/content/public/browser/page_navigator.cc b/content/public/browser/page_navigator.cc
index cb7da036ad18ca255aabf317e4ac094506c82e7a..de8d88e07039b0b66a7e76d772c1d90357868d87 100644
--- a/content/public/browser/page_navigator.cc
+++ b/content/public/browser/page_navigator.cc
@@ -16,6 +16,7 @@ OpenURLParams::OpenURLParams(const GURL& url,
uses_post(false),
frame_tree_node_id(-1),
disposition(disposition),
+ force_new_process_for_new_contents(false),
transition(transition),
is_renderer_initiated(is_renderer_initiated),
should_replace_current_entry(false),
@@ -33,6 +34,7 @@ OpenURLParams::OpenURLParams(const GURL& url,
uses_post(false),
frame_tree_node_id(-1),
disposition(disposition),
+ force_new_process_for_new_contents(false),
transition(transition),
is_renderer_initiated(is_renderer_initiated),
should_replace_current_entry(false),
@@ -50,6 +52,7 @@ OpenURLParams::OpenURLParams(const GURL& url,
uses_post(false),
frame_tree_node_id(frame_tree_node_id),
disposition(disposition),
+ force_new_process_for_new_contents(false),
transition(transition),
is_renderer_initiated(is_renderer_initiated),
should_replace_current_entry(false),
@@ -60,6 +63,7 @@ OpenURLParams::OpenURLParams()
: uses_post(false),
frame_tree_node_id(-1),
disposition(WindowOpenDisposition::UNKNOWN),
+ force_new_process_for_new_contents(false),
transition(ui::PAGE_TRANSITION_LINK),
is_renderer_initiated(false),
should_replace_current_entry(false),
« no previous file with comments | « content/public/browser/page_navigator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698