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

Unified Diff: content/browser/frame_host/frame_tree_node.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, 11 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
Index: content/browser/frame_host/frame_tree_node.cc
diff --git a/content/browser/frame_host/frame_tree_node.cc b/content/browser/frame_host/frame_tree_node.cc
index 398ac8680b851728dd817520444a9b0af23e0a4a..2063ca4eb1912ec7d219b0cbc9b39e4950d9deae 100644
--- a/content/browser/frame_host/frame_tree_node.cc
+++ b/content/browser/frame_host/frame_tree_node.cc
@@ -78,6 +78,7 @@ FrameTreeNode::FrameTreeNode(
RenderFrameHostManager::Delegate* manager_delegate,
blink::WebTreeScopeType scope,
const std::string& name,
+ const std::string& unique_name,
const blink::WebFrameOwnerProperties& frame_owner_properties)
: frame_tree_(frame_tree),
navigator_(navigator),
@@ -94,6 +95,7 @@ FrameTreeNode::FrameTreeNode(
replication_state_(
scope,
name,
+ unique_name,
blink::WebSandboxFlags::None,
false /* should enforce strict mixed content checking */),
pending_sandbox_flags_(blink::WebSandboxFlags::None),
@@ -203,10 +205,12 @@ void FrameTreeNode::SetCurrentOrigin(const url::Origin& origin) {
replication_state_.origin = origin;
}
-void FrameTreeNode::SetFrameName(const std::string& name) {
+void FrameTreeNode::SetFrameName(const std::string& name,
+ const std::string& unique_name) {
if (name != replication_state_.name)
render_manager_.OnDidUpdateName(name);
Charlie Reis 2016/01/27 23:48:49 Don't we need to broadcast the new unique_name to
Łukasz Anforowicz 2016/01/28 01:21:19 Ooops. Good catch - I looked at RenderFrameHostIm
replication_state_.name = name;
+ replication_state_.unique_name = unique_name;
}
void FrameTreeNode::SetEnforceStrictMixedContentChecking(bool should_enforce) {

Powered by Google App Engine
This is Rietveld 408576698