| 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 // 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 15 matching lines...) Expand all Loading... |
| 26 DEFINE_CONTEXT_CONFIG(HTTP_CACHE_DISK) | 26 DEFINE_CONTEXT_CONFIG(HTTP_CACHE_DISK) |
| 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 |
| 37 // For Testing. |
| 38 DEFINE_CONTEXT_CONFIG(MOCK_CERT_VERIFIER) |
| OLD | NEW |