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

Unified Diff: third_party/WebKit/public/web/WebLocalFrame.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/web/WebLocalFrame.h
diff --git a/third_party/WebKit/public/web/WebLocalFrame.h b/third_party/WebKit/public/web/WebLocalFrame.h
index 31919e7d86acd39f19a9f51d9be18175eac62761..198d6c0dac541ab6a6c47afd1fbffa4da29cdee2 100644
--- a/third_party/WebKit/public/web/WebLocalFrame.h
+++ b/third_party/WebKit/public/web/WebLocalFrame.h
@@ -35,6 +35,7 @@ enum class WebCachePolicy;
enum class WebSandboxFlags;
enum class WebTreeScopeType;
struct WebConsoleMessage;
+struct WebContentSecurityPolicyViolation;
struct WebFindOptions;
struct WebFloatRect;
struct WebPrintPresetOptions;
@@ -152,6 +153,11 @@ class WebLocalFrame : public WebFrame {
// and stop this frame loading.
virtual bool maybeRenderFallbackContent(const WebURLError&) const = 0;
+ // Called when a navigation is blocked because a Content Security Policy (CSP)
+ // is infringed.
+ virtual void contentSecurityPolicyViolation(
+ const blink::WebContentSecurityPolicyViolation&) = 0;
+
// Navigation State -------------------------------------------------------
// Returns true if the current frame's load event has not completed.

Powered by Google App Engine
This is Rietveld 408576698