Chromium Code Reviews| 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 COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ | 5 #ifndef COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ |
| 6 #define COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ | 6 #define COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/json/json_value_converter.h" | 10 #include "base/json/json_value_converter.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 // App-provided list of servers that support QUIC. | 75 // App-provided list of servers that support QUIC. |
| 76 ScopedVector<QuicHint> quic_hints; | 76 ScopedVector<QuicHint> quic_hints; |
| 77 // Comma-separted list of QUIC connection options. | 77 // Comma-separted list of QUIC connection options. |
| 78 std::string quic_connection_options; | 78 std::string quic_connection_options; |
| 79 // Enable Data Reduction Proxy with authentication key. | 79 // Enable Data Reduction Proxy with authentication key. |
| 80 std::string data_reduction_proxy_key; | 80 std::string data_reduction_proxy_key; |
| 81 std::string data_reduction_primary_proxy; | 81 std::string data_reduction_primary_proxy; |
| 82 std::string data_reduction_fallback_proxy; | 82 std::string data_reduction_fallback_proxy; |
| 83 std::string data_reduction_secure_proxy_check_url; | 83 std::string data_reduction_secure_proxy_check_url; |
| 84 | 84 |
| 85 // A comma delimited certs to ignore for testing. | |
|
pauljensen
2015/10/09 20:58:10
ignore->accept
pauljensen
2015/10/09 20:58:10
delimited->delimited list of
xunjieli
2015/10/09 21:19:58
Done.
xunjieli
2015/10/09 21:19:58
Done.
| |
| 86 std::string mock_certs_for_testing; | |
| 87 | |
| 85 private: | 88 private: |
| 86 DISALLOW_COPY_AND_ASSIGN(URLRequestContextConfig); | 89 DISALLOW_COPY_AND_ASSIGN(URLRequestContextConfig); |
| 87 }; | 90 }; |
| 88 | 91 |
| 89 } // namespace cronet | 92 } // namespace cronet |
| 90 | 93 |
| 91 #endif // COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ | 94 #endif // COMPONENTS_CRONET_URL_REQUEST_CONTEXT_CONFIG_H_ |
| OLD | NEW |