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

Unified Diff: content/common/frame_messages.h

Issue 2655463006: PlzNavigate: Enforce 'frame-src' CSP on the browser. (Closed)
Patch Set: Addressed comments Created 3 years, 9 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/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 023494a36d6e168d991f4129d7d32df12797a85b..e104f8c4999fa66bf32b0823a624b28849d7e79a 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -19,7 +19,7 @@
#include "cc/surfaces/surface_sequence.h"
#include "content/common/content_export.h"
#include "content/common/content_param_traits.h"
-#include "content/common/content_security_policy/content_security_policy.h"
+#include "content/common/content_security_policy/csp_context.h"
#include "content/common/content_security_policy_header.h"
#include "content/common/download/mhtml_save_status.h"
#include "content/common/frame_message_enums.h"
@@ -342,6 +342,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
IPC_STRUCT_TRAITS_MEMBER(navigation_start)
IPC_STRUCT_TRAITS_MEMBER(method)
IPC_STRUCT_TRAITS_MEMBER(post_data)
+ IPC_STRUCT_TRAITS_MEMBER(should_bypass_main_world_csp)
ncarter (slow) 2017/03/13 18:44:29 I'm wondering if we ought to consider making this
arthursonzogni 2017/03/14 15:38:57 I lack knowledge about isolated world. Okay, there
alexmos 2017/03/17 00:24:27 Our docs say that "content scripts are generally n
arthursonzogni 2017/03/17 11:42:31 TODO and BUG added: https://crbug.com/702540
IPC_STRUCT_TRAITS_END()
IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
@@ -569,6 +570,17 @@ IPC_STRUCT_TRAITS_BEGIN(content::ContentSecurityPolicyHeader)
IPC_STRUCT_TRAITS_MEMBER(source)
IPC_STRUCT_TRAITS_END()
+IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams)
+ IPC_STRUCT_TRAITS_MEMBER(directive)
+ IPC_STRUCT_TRAITS_MEMBER(effective_directive)
+ IPC_STRUCT_TRAITS_MEMBER(console_message)
+ IPC_STRUCT_TRAITS_MEMBER(blocked_url)
+ IPC_STRUCT_TRAITS_MEMBER(report_endpoints)
+ IPC_STRUCT_TRAITS_MEMBER(header)
+ IPC_STRUCT_TRAITS_MEMBER(disposition)
+ IPC_STRUCT_TRAITS_MEMBER(after_redirect)
+IPC_STRUCT_TRAITS_END()
+
IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo)
IPC_STRUCT_TRAITS_MEMBER(file_path)
IPC_STRUCT_TRAITS_MEMBER(display_name)
@@ -890,6 +902,12 @@ IPC_MESSAGE_ROUTED4(FrameMsg_FailedNavigation,
bool, /* stale_copy_in_cache */
int /* error_code */)
+// PlzNavigate
+// Tells the renderer that a navigation was blocked because a content security
+// policy was violated.
+IPC_MESSAGE_ROUTED1(FrameMsg_ReportContentSecurityPolicyViolation,
+ content::CSPViolationParams /* violation_params */)
+
// Request to enumerate and return links to all savable resources in the frame
// Note: this covers only the immediate frame / doesn't cover subframes.
IPC_MESSAGE_ROUTED0(FrameMsg_GetSavableResourceLinks)

Powered by Google App Engine
This is Rietveld 408576698