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

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, 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_node.h ('k') | content/browser/frame_host/frame_tree_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7dfb6dd52c23871b4275f1a275289cfbc645da11..151830ba7be877f195450cb0d9f4ea84a0af89ad 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,16 @@ void FrameTreeNode::SetCurrentOrigin(const url::Origin& origin) {
replication_state_.origin = origin;
}
-void FrameTreeNode::SetFrameName(const std::string& name) {
- if (name != replication_state_.name)
- render_manager_.OnDidUpdateName(name);
+void FrameTreeNode::SetFrameName(const std::string& name,
+ const std::string& unique_name) {
+ if (name == replication_state_.name) {
+ // |unique_name| shouldn't change unless |name| changes.
+ DCHECK_EQ(unique_name, replication_state_.unique_name);
+ return;
+ }
+ render_manager_.OnDidUpdateName(name, unique_name);
replication_state_.name = name;
+ replication_state_.unique_name = unique_name;
}
void FrameTreeNode::SetEnforceStrictMixedContentChecking(bool should_enforce) {
« no previous file with comments | « content/browser/frame_host/frame_tree_node.h ('k') | content/browser/frame_host/frame_tree_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698