| Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| index 131c5210b59d56cf369591616fc1c311a0dde429..a411d64ffe29281f4e11be9274c348193dc2d737 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| @@ -39,6 +39,7 @@
|
| #include "core/loader/FrameLoaderTypes.h"
|
| #include "core/loader/NavigationPolicy.h"
|
| #include "platform/heap/Handle.h"
|
| +#include "platform/network/ContentSecurityPolicyParsers.h"
|
| #include "platform/network/ResourceLoadPriority.h"
|
| #include "platform/weborigin/Referrer.h"
|
| #include "public/platform/WebLoadingBehaviorFlag.h"
|
| @@ -219,6 +220,12 @@ public:
|
|
|
| virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
|
|
|
| + // Called when a new Content Security Policy is added to the frame's
|
| + // document. This can be trigerred by handling of HTTP headers, handling
|
| + // of <meta> element, or by inheriting CSP from the parent (in case of
|
| + // about:blank).
|
| + virtual void didAddContentSecurityPolicy(const String& headerValue, ContentSecurityPolicyHeaderType, ContentSecurityPolicyHeaderSource) { }
|
| +
|
| virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { }
|
|
|
| virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { }
|
|
|