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

Unified Diff: content/public/browser/navigation_handle.cc

Issue 2655463006: PlzNavigate: Enforce 'frame-src' CSP on the browser. (Closed)
Patch Set: Addressed comments(alexmos@ and nasko@) Created 3 years, 10 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
Index: content/public/browser/navigation_handle.cc
diff --git a/content/public/browser/navigation_handle.cc b/content/public/browser/navigation_handle.cc
index bcdbdb97b199bb949da118d5bfcd64b7087178ad..ed6c6177c8bf11c8d19bee1aa9d1a7db3d4eb942 100644
--- a/content/public/browser/navigation_handle.cc
+++ b/content/public/browser/navigation_handle.cc
@@ -31,12 +31,12 @@ NavigationHandle::CreateNavigationHandleForTesting(
RenderFrameHostImpl* rfhi =
static_cast<RenderFrameHostImpl*>(render_frame_host);
std::unique_ptr<NavigationHandleImpl> handle_impl =
- NavigationHandleImpl::Create(
- url, std::vector<GURL>(), rfhi->frame_tree_node(),
- true, // is_renderer_initiated
- is_same_page,
- base::TimeTicks::Now(), 0,
- false); // started_from_context_menu
+ NavigationHandleImpl::Create(url, std::vector<GURL>(),
+ rfhi->frame_tree_node(),
+ true, // is_renderer_initiated
+ is_same_page, base::TimeTicks::Now(), 0,
+ false, // started_from_context_menu
+ false); // should_bypass_main_world_csp
handle_impl->set_render_frame_host(rfhi);
if (error != net::OK)
handle_impl->set_net_error_code(error);

Powered by Google App Engine
This is Rietveld 408576698