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

Side by Side Diff: content/renderer/render_frame_impl.cc

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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/render_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 RenderFrameProxy* previous_sibling_proxy = 841 RenderFrameProxy* previous_sibling_proxy =
842 RenderFrameProxy::FromRoutingID(previous_sibling_routing_id); 842 RenderFrameProxy::FromRoutingID(previous_sibling_routing_id);
843 if (previous_sibling_proxy) 843 if (previous_sibling_proxy)
844 previous_sibling_web_frame = previous_sibling_proxy->web_frame(); 844 previous_sibling_web_frame = previous_sibling_proxy->web_frame();
845 845
846 // Create the RenderFrame and WebLocalFrame, linking the two. 846 // Create the RenderFrame and WebLocalFrame, linking the two.
847 render_frame = 847 render_frame =
848 RenderFrameImpl::Create(parent_proxy->render_view(), routing_id); 848 RenderFrameImpl::Create(parent_proxy->render_view(), routing_id);
849 web_frame = parent_web_frame->createLocalChild( 849 web_frame = parent_web_frame->createLocalChild(
850 replicated_state.scope, WebString::fromUTF8(replicated_state.name), 850 replicated_state.scope, WebString::fromUTF8(replicated_state.name),
851 WebString::fromUTF8(replicated_state.unique_name),
851 replicated_state.sandbox_flags, render_frame, 852 replicated_state.sandbox_flags, render_frame,
852 previous_sibling_web_frame, frame_owner_properties); 853 previous_sibling_web_frame, frame_owner_properties);
853 854
854 // The RenderFrame is created and inserted into the frame tree in the above 855 // The RenderFrame is created and inserted into the frame tree in the above
855 // call to createLocalChild. 856 // call to createLocalChild.
856 render_frame->in_frame_tree_ = true; 857 render_frame->in_frame_tree_ = true;
857 } else { 858 } else {
858 RenderFrameProxy* proxy = 859 RenderFrameProxy* proxy =
859 RenderFrameProxy::FromRoutingID(proxy_routing_id); 860 RenderFrameProxy::FromRoutingID(proxy_routing_id);
860 // The remote frame could've been detached while the remote-to-local 861 // The remote frame could've been detached while the remote-to-local
(...skipping 1751 matching lines...) Expand 10 before | Expand all | Expand 10 after
2612 if (!navigation_state->request_committed()) { 2613 if (!navigation_state->request_committed()) {
2613 Send(new FrameHostMsg_DidAccessInitialDocument(routing_id_)); 2614 Send(new FrameHostMsg_DidAccessInitialDocument(routing_id_));
2614 } 2615 }
2615 } 2616 }
2616 } 2617 }
2617 2618
2618 blink::WebFrame* RenderFrameImpl::createChildFrame( 2619 blink::WebFrame* RenderFrameImpl::createChildFrame(
2619 blink::WebLocalFrame* parent, 2620 blink::WebLocalFrame* parent,
2620 blink::WebTreeScopeType scope, 2621 blink::WebTreeScopeType scope,
2621 const blink::WebString& name, 2622 const blink::WebString& name,
2623 const blink::WebString& unique_name,
2622 blink::WebSandboxFlags sandbox_flags, 2624 blink::WebSandboxFlags sandbox_flags,
2623 const blink::WebFrameOwnerProperties& frameOwnerProperties) { 2625 const blink::WebFrameOwnerProperties& frame_owner_properties) {
2624 // Synchronously notify the browser of a child frame creation to get the 2626 // Synchronously notify the browser of a child frame creation to get the
2625 // routing_id for the RenderFrame. 2627 // routing_id for the RenderFrame.
2626 int child_routing_id = MSG_ROUTING_NONE; 2628 int child_routing_id = MSG_ROUTING_NONE;
2627 Send(new FrameHostMsg_CreateChildFrame( 2629 FrameHostMsg_CreateChildFrame_Params params;
2628 routing_id_, scope, base::UTF16ToUTF8(base::StringPiece16(name)), 2630 params.parent_routing_id = routing_id_;
2629 sandbox_flags, frameOwnerProperties, &child_routing_id)); 2631 params.scope = scope;
2632 params.frame_name = base::UTF16ToUTF8(base::StringPiece16(name));
2633 params.frame_unique_name =
2634 base::UTF16ToUTF8(base::StringPiece16(unique_name));
2635 params.sandbox_flags = sandbox_flags;
2636 params.frame_owner_properties = frame_owner_properties;
2637 Send(new FrameHostMsg_CreateChildFrame(params, &child_routing_id));
2630 2638
2631 // Allocation of routing id failed, so we can't create a child frame. This can 2639 // Allocation of routing id failed, so we can't create a child frame. This can
2632 // happen if this RenderFrameImpl's IPCs are being filtered when in swapped 2640 // happen if this RenderFrameImpl's IPCs are being filtered when in swapped
2633 // out state or synchronous IPC message above has failed. 2641 // out state or synchronous IPC message above has failed.
2634 if (child_routing_id == MSG_ROUTING_NONE) { 2642 if (child_routing_id == MSG_ROUTING_NONE) {
2635 NOTREACHED() << "Failed to allocate routing id for child frame."; 2643 NOTREACHED() << "Failed to allocate routing id for child frame.";
2636 return nullptr; 2644 return nullptr;
2637 } 2645 }
2638 2646
2639 // This method is always called by local frames, never remote frames. 2647 // This method is always called by local frames, never remote frames.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
2733 2741
2734 void RenderFrameImpl::willClose(blink::WebFrame* frame) { 2742 void RenderFrameImpl::willClose(blink::WebFrame* frame) {
2735 DCHECK(!frame_ || frame_ == frame); 2743 DCHECK(!frame_ || frame_ == frame);
2736 2744
2737 FOR_EACH_OBSERVER(RenderFrameObserver, observers_, FrameWillClose()); 2745 FOR_EACH_OBSERVER(RenderFrameObserver, observers_, FrameWillClose());
2738 FOR_EACH_OBSERVER(RenderViewObserver, render_view_->observers(), 2746 FOR_EACH_OBSERVER(RenderViewObserver, render_view_->observers(),
2739 FrameWillClose(frame)); 2747 FrameWillClose(frame));
2740 } 2748 }
2741 2749
2742 void RenderFrameImpl::didChangeName(blink::WebLocalFrame* frame, 2750 void RenderFrameImpl::didChangeName(blink::WebLocalFrame* frame,
2743 const blink::WebString& name) { 2751 const blink::WebString& name,
2752 const blink::WebString& unique_name) {
2744 DCHECK(!frame_ || frame_ == frame); 2753 DCHECK(!frame_ || frame_ == frame);
2745 2754
2746 // TODO(alexmos): According to https://crbug.com/169110, sending window.name 2755 // TODO(alexmos): According to https://crbug.com/169110, sending window.name
2747 // updates may have performance implications for benchmarks like SunSpider. 2756 // updates may have performance implications for benchmarks like SunSpider.
2748 // For now, send these updates only for --site-per-process, which needs to 2757 // For now, send these updates only for --site-per-process, which needs to
2749 // replicate frame names to frame proxies, and when 2758 // replicate frame names to frame proxies, and when
2750 // |report_frame_name_changes| is set (used by <webview>). If needed, this 2759 // |report_frame_name_changes| is set (used by <webview>). If needed, this
2751 // can be optimized further by only sending the update if there are any 2760 // can be optimized further by only sending the update if there are any
2752 // remote frames in the frame tree, or delaying and batching up IPCs if 2761 // remote frames in the frame tree, or delaying and batching up IPCs if
2753 // updates are happening too frequently. 2762 // updates are happening too frequently.
2754 if (SiteIsolationPolicy::AreCrossProcessFramesPossible() || 2763 if (SiteIsolationPolicy::AreCrossProcessFramesPossible() ||
2755 render_view_->renderer_preferences_.report_frame_name_changes) { 2764 render_view_->renderer_preferences_.report_frame_name_changes) {
2756 Send(new FrameHostMsg_DidChangeName( 2765 Send(new FrameHostMsg_DidChangeName(
2757 routing_id_, base::UTF16ToUTF8(base::StringPiece16(name)))); 2766 routing_id_, base::UTF16ToUTF8(base::StringPiece16(name)),
2767 base::UTF16ToUTF8(base::StringPiece16(unique_name))));
2758 } 2768 }
2759 } 2769 }
2760 2770
2761 void RenderFrameImpl::didEnforceStrictMixedContentChecking() { 2771 void RenderFrameImpl::didEnforceStrictMixedContentChecking() {
2762 Send(new FrameHostMsg_EnforceStrictMixedContentChecking(routing_id_)); 2772 Send(new FrameHostMsg_EnforceStrictMixedContentChecking(routing_id_));
2763 } 2773 }
2764 2774
2765 void RenderFrameImpl::didChangeSandboxFlags(blink::WebFrame* child_frame, 2775 void RenderFrameImpl::didChangeSandboxFlags(blink::WebFrame* child_frame,
2766 blink::WebSandboxFlags flags) { 2776 blink::WebSandboxFlags flags) {
2767 Send(new FrameHostMsg_DidChangeSandboxFlags( 2777 Send(new FrameHostMsg_DidChangeSandboxFlags(
(...skipping 3316 matching lines...) Expand 10 before | Expand all | Expand 10 after
6084 int match_count, 6094 int match_count,
6085 int ordinal, 6095 int ordinal,
6086 const WebRect& selection_rect, 6096 const WebRect& selection_rect,
6087 bool final_status_update) { 6097 bool final_status_update) {
6088 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, 6098 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count,
6089 selection_rect, ordinal, 6099 selection_rect, ordinal,
6090 final_status_update)); 6100 final_status_update));
6091 } 6101 }
6092 6102
6093 } // namespace content 6103 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698