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

Side by Side Diff: net/http/transport_security_state_static_unittest3.json

Issue 2906483003: Experiment with a compact mode for simple preloaded entries. (Closed)
Patch Set: Initialize all struct members. Created 3 years, 3 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
« no previous file with comments | « net/http/transport_security_state.cc ('k') | net/http/transport_security_state_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 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 // This is a HSTS preloaded list used by the unittests. For more information 5 // This is a HSTS preloaded list used by the unittests. For more information
6 // on the content and format see the comments in 6 // on the content and format see the comments in
7 // transport_security_state_static.json. 7 // transport_security_state_static.json.
8 8
9 { 9 {
10 "pinsets": [ 10 "pinsets": [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "name": "mix.badssl.com", 51 "name": "mix.badssl.com",
52 "mode": "force-https", 52 "mode": "force-https",
53 "include_subdomains": false, 53 "include_subdomains": false,
54 "pins": "test2", 54 "pins": "test2",
55 "include_subdomains_for_pinning": true, 55 "include_subdomains_for_pinning": true,
56 "expect_ct": true, 56 "expect_ct": true,
57 "expect_ct_report_uri": "https://report.example.com/ct-upload", 57 "expect_ct_report_uri": "https://report.example.com/ct-upload",
58 "expect_staple": true, 58 "expect_staple": true,
59 "include_subdomains_for_expect_staple": true, 59 "include_subdomains_for_expect_staple": true,
60 "expect_staple_report_uri": "https://report.badssl.com/staple-upload" 60 "expect_staple_report_uri": "https://report.badssl.com/staple-upload"
61 }, {
62 // Keep this a simple entry in the context of TrieWriter::IsSimpleEntry().
63 "name": "simple-entry.example.com",
64 "mode": "force-https",
65 "include_subdomains": true
61 } 66 }
62 ] 67 ]
63 } 68 }
OLDNEW
« no previous file with comments | « net/http/transport_security_state.cc ('k') | net/http/transport_security_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698