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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 2873503002: NOT YET READY: Improve granularity of window namespaces in Blink.
Patch Set: Rebasing... Created 3 years, 6 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/renderer/render_frame_impl.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index 07aefd06676f40193fb2648a2981571db64aeae7..9f19e8d703252627b7e9b13578a7c32a896a8d2d 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -3077,6 +3077,11 @@ blink::WebLocalFrame* RenderFrameImpl::CreateChildFrame(
return web_frame;
}
+blink::WebFrame* RenderFrameImpl::FindFrame(const blink::WebString& name) {
+ return GetContentClient()->renderer()->FindFrame(this->GetWebFrame(),
+ name.Utf8());
+}
+
void RenderFrameImpl::DidChangeOpener(blink::WebFrame* opener) {
// Only a local frame should be able to update another frame's opener.
DCHECK(!opener || opener->IsWebLocalFrame());
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698