OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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 COMPONENTS_CERTIFICATE_TRANSPARENCY_PREF_NAMES_H_ | |
6 #define COMPONENTS_CERTIFICATE_TRANSPARENCY_PREF_NAMES_H_ | |
7 | |
8 namespace certificate_transparency { | |
9 namespace prefs { | |
10 | |
11 // The set of hosts (as URLBlacklist-syntax filters) for which Certificate | |
12 // Transparency is required to be present. | |
13 extern const char kCTRequiredHosts[]; | |
battre
2016/06/28 08:33:13
Why do you add this if it is not controllable by p
Ryan Sleevi
2016/06/28 16:41:27
Honestly? Mostly for testing purposes (it was easi
battre
2016/06/29 09:14:43
Acknowledged.
| |
14 | |
15 // The set of hosts (as URLBlacklist-syntax filters) for which Certificate | |
16 // Transparency information is allowed to be absent, even if it would | |
17 // otherwise be required (e.g. as part of security policy). | |
18 extern const char kCTExcludedHosts[]; | |
battre
2016/06/28 08:33:13
Do you want to add a comment which one wins in cas
Ryan Sleevi
2016/06/28 16:41:27
Should that be with the Pref? I felt like the pref
battre
2016/06/29 09:14:43
Hm. It's just the place I would look for this info
| |
19 | |
20 } // namespace prefs | |
21 } // namespace certificate_transparency | |
22 | |
23 #endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_PREF_NAMES_H_ | |
OLD | NEW |