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

Side by Side Diff: content/common/content_security_policy/csp_directive.h

Issue 2612793002: Implement ContentSecurityPolicy on the browser-side. (Closed)
Patch Set: Add the TODO and bug ids that was forgotten. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_CONTENT_SECURITY_POLICY_CSP_DIRECTIVE_
6 #define CONTENT_COMMON_CONTENT_SECURITY_POLICY_CSP_DIRECTIVE_
7
8 #include <string>
9 #include "content/common/content_export.h"
10 #include "content/common/content_security_policy/csp_source_list.h"
11
12 namespace content {
13
14 // CSPDirective contains a set of allowed sources for a given Content Security
15 // Policy directive.
16 //
17 // For example, the Content Security Policy `default-src img.cdn.com
18 // example.com` would produce a CSPDirective object whose 'name' is
19 // 'DefaultSrc', and whose 'source_list' contains two CSPSourceExpressions
20 // representing 'img.cdn.com' and 'example.com' respectively.
21 //
22 // https://w3c.github.io/webappsec-csp/#framework-directives
23 struct CONTENT_EXPORT CSPDirective {
24 enum Name {
25 DefaultSrc,
26 ChildSrc,
27 FrameSrc,
28 FormAction,
29
30 Unknown,
31 NameLast = Unknown,
32 };
33
34 static std::string NameToString(Name name);
35 static Name StringToName(const std::string& name);
36
37 CSPDirective();
38 CSPDirective(Name name, const CSPSourceList& source_list);
39 CSPDirective(const CSPDirective&);
40
41 Name name;
42 CSPSourceList source_list;
43
44 std::string ToString() const;
45 };
46
47 } // namespace content
48 #endif // CONTENT_COMMON_CONTENT_SECURITY_POLICY_CSP_DIRECTIVE_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698