Home | History | Annotate | Download | only in csp

Lines Matching refs:ContentSecurityPolicy

8 #include "core/frame/csp/ContentSecurityPolicy.h"
21 class ContentSecurityPolicy;
27 static PassOwnPtr<CSPDirectiveList> create(ContentSecurityPolicy*, const UChar* begin, const UChar* end, ContentSecurityPolicyHeaderType, ContentSecurityPolicyHeaderSource);
35 bool allowJavaScriptURLs(const String& contextURL, const WTF::OrdinalNumber& contextLine, ContentSecurityPolicy::ReportingStatus) const;
36 bool allowInlineEventHandlers(const String& contextURL, const WTF::OrdinalNumber& contextLine, ContentSecurityPolicy::ReportingStatus) const;
37 bool allowInlineScript(const String& contextURL, const WTF::OrdinalNumber& contextLine, ContentSecurityPolicy::ReportingStatus) const;
38 bool allowInlineStyle(const String& contextURL, const WTF::OrdinalNumber& contextLine, ContentSecurityPolicy::ReportingStatus) const;
39 bool allowEval(ScriptState*, ContentSecurityPolicy::ReportingStatus) const;
40 bool allowPluginType(const String& type, const String& typeAttribute, const KURL&, ContentSecurityPolicy::ReportingStatus) const;
42 bool allowScriptFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
43 bool allowObjectFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
44 bool allowChildFrameFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
45 bool allowImageFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
46 bool allowStyleFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
47 bool allowFontFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
48 bool allowMediaFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
49 bool allowConnectToSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
50 bool allowFormAction(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
51 bool allowBaseURI(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
52 bool allowAncestors(LocalFrame*, ContentSecurityPolicy::ReportingStatus) const;
53 bool allowChildContextFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
67 CSPDirectiveList(ContentSecurityPolicy*, ContentSecurityPolicyHeaderType, ContentSecurityPolicyHeaderSource);
105 ContentSecurityPolicy* m_policy;