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

Unified Diff: content/browser/frame_host/frame_tree.cc

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Rebasing... Created 4 years, 10 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/browser/frame_host/frame_tree.h ('k') | content/browser/frame_host/frame_tree_node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/frame_tree.cc
diff --git a/content/browser/frame_host/frame_tree.cc b/content/browser/frame_host/frame_tree.cc
index 2fadc124eb05e5650925273b497680bf19d42146..199edd496359fb68d51586321bd372475f2a0682 100644
--- a/content/browser/frame_host/frame_tree.cc
+++ b/content/browser/frame_host/frame_tree.cc
@@ -137,6 +137,7 @@ FrameTree::FrameTree(Navigator* navigator,
// document scope.
blink::WebTreeScopeType::Document,
std::string(),
+ std::string(),
blink::WebFrameOwnerProperties())),
focused_frame_tree_node_id_(-1),
load_progress_(0.0) {}
@@ -204,6 +205,7 @@ bool FrameTree::AddFrame(
int new_routing_id,
blink::WebTreeScopeType scope,
const std::string& frame_name,
+ const std::string& frame_unique_name,
blink::WebSandboxFlags sandbox_flags,
const blink::WebFrameOwnerProperties& frame_owner_properties) {
CHECK_NE(new_routing_id, MSG_ROUTING_NONE);
@@ -220,7 +222,7 @@ bool FrameTree::AddFrame(
make_scoped_ptr(new FrameTreeNode(
this, parent->navigator(), render_frame_delegate_,
render_view_delegate_, render_widget_delegate_, manager_delegate_,
- scope, frame_name, frame_owner_properties)),
+ scope, frame_name, frame_unique_name, frame_owner_properties)),
process_id, new_routing_id);
// Set sandbox flags and make them effective immediately, since initial
« no previous file with comments | « content/browser/frame_host/frame_tree.h ('k') | content/browser/frame_host/frame_tree_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698