Browse Source

AttachToOuterWebContentsFrame => AttachInnerWebContents

https://chromium-review.googlesource.com/c/1492653
Jeremy Apthorp 6 years ago
parent
commit
bf6fea3b59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/browser/web_view_guest_delegate.cc

+ 1 - 1
atom/browser/web_view_guest_delegate.cc

@@ -42,7 +42,7 @@ void WebViewGuestDelegate::AttachToIframe(
   // Attach this inner WebContents |guest_web_contents| to the outer
   // WebContents |embedder_web_contents|. The outer WebContents's
   // frame |embedder_frame| hosts the inner WebContents.
-  guest_web_contents->AttachToOuterWebContentsFrame(
+  embedder_web_contents_->AttachInnerWebContents(
       base::WrapUnique<content::WebContents>(guest_web_contents),
       embedder_frame);