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

Unified Diff: content/browser/frame_host/navigator_impl.cc

Issue 2482873002: Add is_srcdoc to FrameNavigationEntry and restore about::srcdoc URL. (Closed)
Patch Set: Created 4 years, 1 month 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
Index: content/browser/frame_host/navigator_impl.cc
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc
index ea6c3478483e831ff9c1a2247f1cbcef8a5d7e43..c7879975f6d58cfd51637683b8ad4153f4da6515 100644
--- a/content/browser/frame_host/navigator_impl.cc
+++ b/content/browser/frame_host/navigator_impl.cc
@@ -892,7 +892,7 @@ void NavigatorImpl::RequestTransferURL(
node, -1, -1, nullptr,
static_cast<SiteInstanceImpl*>(source_site_instance),
dest_url, referrer_to_use, redirect_chain, PageState(), method,
- -1);
+ -1, false);
arthursonzogni 2016/11/07 15:20:33 Here and below in this function, I assumed that Re
alexmos 2016/11/07 22:51:46 Yes, that seems right.
} else {
// Main frame case.
entry = NavigationEntryImpl::FromNavigationEntry(
@@ -925,7 +925,7 @@ void NavigatorImpl::RequestTransferURL(
frame_entry = new FrameNavigationEntry(
node->unique_name(), -1, -1, nullptr,
static_cast<SiteInstanceImpl*>(source_site_instance), dest_url,
- referrer_to_use, method, -1);
+ referrer_to_use, method, -1, false);
}
NavigateToEntry(node, *frame_entry, *entry.get(), ReloadType::NONE, false,
false, false, post_body);

Powered by Google App Engine
This is Rietveld 408576698