| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 21ca407b9e5bebb5128702dd2890e1842d230244..fa8b62286a971a908f1d590db633324e3b7e4b21 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -3352,10 +3352,10 @@ void WebContentsImpl::RequestOpenURL(RenderFrameHostImpl* render_frame_host,
|
| }
|
| }
|
|
|
| -bool WebContentsImpl::ShouldTransferNavigation() {
|
| +bool WebContentsImpl::ShouldTransferNavigation(bool is_main_frame_navigation) {
|
| if (!delegate_)
|
| return true;
|
| - return delegate_->ShouldTransferNavigation();
|
| + return delegate_->ShouldTransferNavigation(is_main_frame_navigation);
|
| }
|
|
|
| bool WebContentsImpl::ShouldPreserveAbortedURLs() {
|
|
|