Chromium Code Reviews| Index: third_party/WebKit/Source/core/frame/csp/SourceListDirective.h |
| diff --git a/third_party/WebKit/Source/core/frame/csp/SourceListDirective.h b/third_party/WebKit/Source/core/frame/csp/SourceListDirective.h |
| index d00ee36ddb4db5e16331543fcc25b1021d41dee7..016539d93fe1d6b2f59e39759f212c36aaddaf2b 100644 |
| --- a/third_party/WebKit/Source/core/frame/csp/SourceListDirective.h |
| +++ b/third_party/WebKit/Source/core/frame/csp/SourceListDirective.h |
| @@ -9,6 +9,7 @@ |
| #include "core/frame/csp/CSPSourceList.h" |
| #include "core/frame/csp/ContentSecurityPolicy.h" |
|
foolip
2016/05/30 10:10:23
Is this include still needed? ContentSecurityPolic
Mike West
2016/05/30 14:59:31
You're right. Weird. Dropped.
|
| #include "platform/network/ContentSecurityPolicyParsers.h" |
| +#include "platform/network/ResourceRequest.h" |
| #include "wtf/HashSet.h" |
| #include "wtf/text/WTFString.h" |
| @@ -23,7 +24,7 @@ public: |
| SourceListDirective(const String& name, const String& value, ContentSecurityPolicy*); |
| DECLARE_TRACE(); |
| - bool allows(const KURL&, blink::ContentSecurityPolicy::RedirectStatus) const; |
| + bool allows(const KURL&, ResourceRequest::RedirectStatus) const; |
| bool allowInline() const; |
| bool allowEval() const; |
| bool allowDynamic() const; |