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

Unified Diff: third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h

Issue 2655463006: PlzNavigate: Enforce 'frame-src' CSP on the browser. (Closed)
Patch Set: Fix tests. 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: third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h
diff --git a/third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h b/third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h
index 53244f5b9144721311be388b24bad6b466040af1..f67088e9edb33b60a0d816daed40876b11d96f16 100644
--- a/third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h
+++ b/third_party/WebKit/public/platform/WebContentSecurityPolicyStruct.h
@@ -33,6 +33,7 @@
#include "public/platform/WebContentSecurityPolicy.h"
#include "public/platform/WebString.h"
+#include "public/platform/WebURL.h"
#include "public/platform/WebVector.h"
namespace blink {
@@ -64,6 +65,32 @@ struct WebContentSecurityPolicyPolicy {
WebVector<WebString> reportEndpoints;
};
+struct WebContentSecurityPolicyViolation {
+ // The name of the directive that infringe the policy. |directive| might be a
+ // directive that serves as a fallback to the |effective_directive|.
+ WebString directive;
+
+ // The name the effective directive that was checked against.
+ WebString effectiveDirective;
+
+ // The console message that was displayed to the user.
+ WebString consoleMessage;
+
+ // The URL that was blocked by the policy.
+ WebURL blockedUrl;
+
+ // The set of URI where a JSON-formatted report of the violation should be
+ // sent.
+ WebVector<WebString> reportEndpoints;
+
+ // The raw content security policy header that was infringed.
+ WebString header;
+
+ // Each policy has an associated disposition, which is either "enforce" or
+ // "report".
+ WebContentSecurityPolicyType disposition;
+};
+
} // namespace blink
#endif

Powered by Google App Engine
This is Rietveld 408576698