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

Side by Side Diff: components/cronet/url_request_context_config_list.h

Issue 1407263010: [Cronet] Public key pinning for Java API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed review comments Created 5 years, 1 month 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
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 // This file intentionally does not have header guards, it's included 5 // This file intentionally does not have header guards, it's included
6 // inside a macro to generate enum values. 6 // inside a macro to generate enum values.
7 #ifndef DEFINE_CONTEXT_CONFIG 7 #ifndef DEFINE_CONTEXT_CONFIG
8 #error "DEFINE_CONTEXT_CONFIG should be defined before including this file" 8 #error "DEFINE_CONTEXT_CONFIG should be defined before including this file"
9 #endif 9 #endif
10 // See HttpUrlRequestFactoryConfig.java for description of these parameters. 10 // See HttpUrlRequestFactoryConfig.java for description of these parameters.
(...skipping 16 matching lines...) Expand all
27 DEFINE_CONTEXT_CONFIG(HTTP_CACHE_MEMORY) 27 DEFINE_CONTEXT_CONFIG(HTTP_CACHE_MEMORY)
28 DEFINE_CONTEXT_CONFIG(LOAD_DISABLE_CACHE) 28 DEFINE_CONTEXT_CONFIG(LOAD_DISABLE_CACHE)
29 29
30 DEFINE_CONTEXT_CONFIG(QUIC_HINTS) 30 DEFINE_CONTEXT_CONFIG(QUIC_HINTS)
31 DEFINE_CONTEXT_CONFIG(QUIC_HINT_HOST) 31 DEFINE_CONTEXT_CONFIG(QUIC_HINT_HOST)
32 DEFINE_CONTEXT_CONFIG(QUIC_HINT_PORT) 32 DEFINE_CONTEXT_CONFIG(QUIC_HINT_PORT)
33 DEFINE_CONTEXT_CONFIG(QUIC_HINT_ALT_PORT) 33 DEFINE_CONTEXT_CONFIG(QUIC_HINT_ALT_PORT)
34 34
35 DEFINE_CONTEXT_CONFIG(QUIC_OPTIONS) 35 DEFINE_CONTEXT_CONFIG(QUIC_OPTIONS)
36 36
37 DEFINE_CONTEXT_CONFIG(HPKP_LIST)
pauljensen 2015/11/17 19:01:23 These needs comments.
kapishnikov 2015/11/18 00:10:31 Done.
38 DEFINE_CONTEXT_CONFIG(HPKP_HOST)
39 DEFINE_CONTEXT_CONFIG(HPKP_PIN_HASHES)
40 DEFINE_CONTEXT_CONFIG(HPKP_INCLUDE_SUBDOMAINS)
41 DEFINE_CONTEXT_CONFIG(HPKP_EXPIRATION_DATE)
42
37 // For Testing. 43 // For Testing.
38 DEFINE_CONTEXT_CONFIG(MOCK_CERT_VERIFIER) 44 DEFINE_CONTEXT_CONFIG(MOCK_CERT_VERIFIER)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698