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

Unified Diff: content/common/frame_replication_state.h

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Removed unnecessary crbug comment. 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/common/frame_replication_state.h
diff --git a/content/common/frame_replication_state.h b/content/common/frame_replication_state.h
index 414bc3c130412e48dab34aeee29025e85600f9ef..9014241b765001aaf454b5b108d30355b24e85c9 100644
--- a/content/common/frame_replication_state.h
+++ b/content/common/frame_replication_state.h
@@ -21,6 +21,7 @@ struct CONTENT_EXPORT FrameReplicationState {
FrameReplicationState();
FrameReplicationState(blink::WebTreeScopeType scope,
const std::string& name,
+ const std::string& unique_name,
blink::WebSandboxFlags sandbox_flags,
bool should_enforce_strict_mixed_content_checking);
~FrameReplicationState();
@@ -51,8 +52,7 @@ struct CONTENT_EXPORT FrameReplicationState {
// frame.
blink::WebSandboxFlags sandbox_flags;
- // The assigned name of the frame. This name can be empty, unlike the unique
- // name generated internally in the DOM tree.
+ // The assigned name of the frame.
//
// |name| is set when a new child frame is created using the value of the
// <iframe> element's "name" attribute (see
@@ -64,6 +64,9 @@ struct CONTENT_EXPORT FrameReplicationState {
// frame using its updated name (e.g., using window.open(url, frame_name)).
std::string name;
+ // Unique name of the frame.
alexmos 2016/02/10 00:46:46 Maybe also mention what it's for, why it's replica
Łukasz Anforowicz 2016/02/10 22:10:51 I've expanded the comment: 1) added a reference to
+ std::string unique_name;
+
// Whether the frame is in a document tree or a shadow tree, per the Shadow
// DOM spec: https://w3c.github.io/webcomponents/spec/shadow/
// Note: This should really be const, as it can never change once a frame is

Powered by Google App Engine
This is Rietveld 408576698