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 5e8942bc8e6cef11b7a49b614865f634d28f8c19..b24f9e65f5e9af36bad6718ca4e64cb66316cb8b 100644 |
--- a/content/browser/web_contents/web_contents_impl.cc |
+++ b/content/browser/web_contents/web_contents_impl.cc |
@@ -3851,7 +3851,7 @@ WebPreferences WebContentsImpl::ComputeWebkitPrefs() { |
int WebContentsImpl::CreateSwappedOutRenderView( |
SiteInstance* instance) { |
return GetRenderManager()->CreateRenderFrame(instance, MSG_ROUTING_NONE, |
- true, true); |
+ true, true, false); |
} |
void WebContentsImpl::OnUserGesture() { |
@@ -4022,7 +4022,7 @@ int WebContentsImpl::CreateOpenerRenderViews(SiteInstance* instance) { |
// Create a swapped out RenderView in the given SiteInstance if none exists, |
// setting its opener to the given route_id. Return the new view's route_id. |
return GetRenderManager()->CreateRenderFrame(instance, opener_route_id, |
- true, true); |
+ true, true, false); |
} |
NavigationControllerImpl& WebContentsImpl::GetControllerForRenderManager() { |