| Index: Source/core/frame/csp/CSPDirectiveList.h
|
| diff --git a/Source/core/frame/csp/CSPDirectiveList.h b/Source/core/frame/csp/CSPDirectiveList.h
|
| index 8ba6b8d54b07befd4c61bc3118112eb9eb86459c..f3f474a32aa74c455a1845c2761e20b5e08548f4 100644
|
| --- a/Source/core/frame/csp/CSPDirectiveList.h
|
| +++ b/Source/core/frame/csp/CSPDirectiveList.h
|
| @@ -46,6 +46,7 @@ public:
|
| bool allowStyleFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| bool allowFontFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| bool allowMediaFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| + bool allowManifestFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| bool allowConnectToSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| bool allowFormAction(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| bool allowBaseURI(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
|
| @@ -127,6 +128,7 @@ private:
|
| OwnPtr<SourceListDirective> m_frameSrc;
|
| OwnPtr<SourceListDirective> m_imgSrc;
|
| OwnPtr<SourceListDirective> m_mediaSrc;
|
| + OwnPtr<SourceListDirective> m_manifestSrc;
|
| OwnPtr<SourceListDirective> m_objectSrc;
|
| OwnPtr<SourceListDirective> m_scriptSrc;
|
| OwnPtr<SourceListDirective> m_styleSrc;
|
|
|