Index: content/common/frame_messages.h |
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
index e6680a033bd1ec5de435914c50f28becccd318ad..a47f22e52ca891ab73a7149688344b508119889f 100644 |
--- a/content/common/frame_messages.h |
+++ b/content/common/frame_messages.h |
@@ -397,6 +397,12 @@ IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
#endif |
IPC_STRUCT_TRAITS_END() |
+IPC_STRUCT_TRAITS_BEGIN(content::FeaturePolicyParsedWhitelist) |
+ IPC_STRUCT_TRAITS_MEMBER(feature_name) |
+ IPC_STRUCT_TRAITS_MEMBER(matches_all_origins) |
+ IPC_STRUCT_TRAITS_MEMBER(origins) |
+IPC_STRUCT_TRAITS_END() |
+ |
IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
IPC_STRUCT_TRAITS_MEMBER(origin) |
IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
@@ -1001,7 +1007,8 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeName, |
// Notifies the browser process that a non-empty Feature-Policy HTTP header was |
// delivered with the document being loaded into the frame. |
-IPC_MESSAGE_ROUTED1(FrameHostMsg_DidSetFeaturePolicyHeader, std::string) |
+IPC_MESSAGE_ROUTED1(FrameHostMsg_DidSetFeaturePolicyHeader, |
+ std::vector<content::FeaturePolicyParsedWhitelist>) |
// Notifies the browser process about a new Content Security Policy that needs |
// to be applies to the frame. This message is sent when a frame commits |