| 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 ContentSecurityPolicyParsers_h | 5 #ifndef ContentSecurityPolicyParsers_h |
| 6 #define ContentSecurityPolicyParsers_h | 6 #define ContentSecurityPolicyParsers_h |
| 7 | 7 |
| 8 #include "platform/Crypto.h" | 8 #include "platform/Crypto.h" |
| 9 #include "platform/PlatformExport.h" | 9 #include "platform/PlatformExport.h" |
| 10 #include "wtf/text/Unicode.h" | 10 #include "platform/wtf/text/Unicode.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 typedef std::pair<unsigned, DigestValue> CSPHashValue; | 14 typedef std::pair<unsigned, DigestValue> CSPHashValue; |
| 15 | 15 |
| 16 enum ContentSecurityPolicyHeaderType { | 16 enum ContentSecurityPolicyHeaderType { |
| 17 ContentSecurityPolicyHeaderTypeReport, | 17 ContentSecurityPolicyHeaderTypeReport, |
| 18 ContentSecurityPolicyHeaderTypeEnforce | 18 ContentSecurityPolicyHeaderTypeEnforce |
| 19 }; | 19 }; |
| 20 | 20 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 42 PLATFORM_EXPORT bool isNotColonOrSlash(UChar); | 42 PLATFORM_EXPORT bool isNotColonOrSlash(UChar); |
| 43 PLATFORM_EXPORT bool isMediaTypeCharacter(UChar); | 43 PLATFORM_EXPORT bool isMediaTypeCharacter(UChar); |
| 44 | 44 |
| 45 // Only checks for general Base64 encoded chars, not '=' chars since '=' is | 45 // Only checks for general Base64 encoded chars, not '=' chars since '=' is |
| 46 // positional and may only appear at the end of a Base64 encoded string. | 46 // positional and may only appear at the end of a Base64 encoded string. |
| 47 PLATFORM_EXPORT bool isBase64EncodedCharacter(UChar); | 47 PLATFORM_EXPORT bool isBase64EncodedCharacter(UChar); |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| 50 | 50 |
| 51 #endif | 51 #endif |
| OLD | NEW |