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

Unified Diff: content/browser/frame_host/render_frame_host_impl.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
Index: content/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index a379583a3c27f7ba51f9615a3aa89a23367b190f..40139a543c516e2a599c617ac581bbd211db91ec 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -829,8 +829,12 @@ void RenderFrameHostImpl::OnCreateChildFrame(
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) {
+ // TODO(lukasza): Call ReceivedBadMessage when |frame_unique_name| is empty.
+ DCHECK(!frame_unique_name.empty());
+
// It is possible that while a new RenderFrameHost was committed, the
// RenderFrame corresponding to this host sent an IPC message to create a
// frame and it is delivered after this host is swapped out.
@@ -840,7 +844,7 @@ void RenderFrameHostImpl::OnCreateChildFrame(
return;
frame_tree_->AddFrame(frame_tree_node_, GetProcess()->GetID(), new_routing_id,
- scope, frame_name, sandbox_flags,
+ scope, frame_name, frame_unique_name, sandbox_flags,
frame_owner_properties);
}
@@ -1421,9 +1425,15 @@ void RenderFrameHostImpl::OnDidChangeOpener(int32_t opener_routing_id) {
GetSiteInstance());
}
-void RenderFrameHostImpl::OnDidChangeName(const std::string& name) {
+void RenderFrameHostImpl::OnDidChangeName(const std::string& name,
+ const std::string& unique_name) {
+ if (GetParent() != nullptr) {
+ // TODO(lukasza): Call ReceivedBadMessage when |unique_name| is empty.
+ DCHECK(!unique_name.empty());
+ }
+
std::string old_name = frame_tree_node()->frame_name();
- frame_tree_node()->SetFrameName(name);
+ frame_tree_node()->SetFrameName(name, unique_name);
if (old_name.empty() && !name.empty())
frame_tree_node_->render_manager()->CreateProxiesForNewNamedFrame();
delegate_->DidChangeName(this, name);
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.h ('k') | content/browser/frame_host/render_frame_host_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698