OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CSPSource_h | 5 #ifndef CSPSource_h |
6 #define CSPSource_h | 6 #define CSPSource_h |
7 | 7 |
8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "core/frame/csp/ContentSecurityPolicy.h" | 9 #include "core/frame/csp/ContentSecurityPolicy.h" |
10 #include "wtf/FastAllocBase.h" | 10 #include "wtf/Allocator.h" |
11 #include "wtf/text/WTFString.h" | 11 #include "wtf/text/WTFString.h" |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 | 14 |
15 class ContentSecurityPolicy; | 15 class ContentSecurityPolicy; |
16 class KURL; | 16 class KURL; |
17 | 17 |
18 class CORE_EXPORT CSPSource { | 18 class CORE_EXPORT CSPSource { |
19 WTF_MAKE_FAST_ALLOCATED(CSPSource); | 19 WTF_MAKE_FAST_ALLOCATED(CSPSource); |
20 public: | 20 public: |
(...skipping 18 matching lines...) Expand all Loading... |
39 int m_port; | 39 int m_port; |
40 String m_path; | 40 String m_path; |
41 | 41 |
42 WildcardDisposition m_hostWildcard; | 42 WildcardDisposition m_hostWildcard; |
43 WildcardDisposition m_portWildcard; | 43 WildcardDisposition m_portWildcard; |
44 }; | 44 }; |
45 | 45 |
46 } // namespace | 46 } // namespace |
47 | 47 |
48 #endif | 48 #endif |
OLD | NEW |