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

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: 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/common/frame_messages.h ('k') | content/common/frame_replication_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..55f0ef3f92c8d7a6cbd60028e447ea5742686072 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 (see WebFrame::assignedName()).
//
// |name| is set when a new child frame is created using the value of the
// <iframe> element's "name" attribute (see
@@ -64,6 +64,19 @@ 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 (see WebFrame::uniqueName()).
+ //
+ // |unique_name| is used in heuristics that try to identify the same frame
+ // across different, unrelated navigations (i.e. to refer to the frame
+ // when going back/forward in session history OR when refering to the frame
+ // in layout tests results).
+ //
+ // |unique_name| needs to be replicated to ensure that unique name for a given
+ // frame is the same across all renderers - without replication a renderer
+ // might arrive at a different value when recalculating the unique name from
+ // scratch.
+ 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
« no previous file with comments | « content/common/frame_messages.h ('k') | content/common/frame_replication_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698