| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 class is useful for building a simple URLRequestContext. Most creators | 5 // This class is useful for building a simple URLRequestContext. Most creators |
| 6 // of new URLRequestContexts should use this helper class to construct it. Call | 6 // of new URLRequestContexts should use this helper class to construct it. Call |
| 7 // any configuration params, and when done, invoke Build() to construct the | 7 // any configuration params, and when done, invoke Build() to construct the |
| 8 // URLRequestContext. This URLRequestContext will own all its own storage. | 8 // URLRequestContext. This URLRequestContext will own all its own storage. |
| 9 // | 9 // |
| 10 // URLRequestContextBuilder and its associated params classes are initially | 10 // URLRequestContextBuilder and its associated params classes are initially |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 namespace base { | 42 namespace base { |
| 43 class SingleThreadTaskRunner; | 43 class SingleThreadTaskRunner; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace net { | 46 namespace net { |
| 47 | 47 |
| 48 class CertVerifier; | 48 class CertVerifier; |
| 49 class ChannelIDService; | 49 class ChannelIDService; |
| 50 class CookieStore; | 50 class CookieStore; |
| 51 class CTVerifier; | 51 class CTVerifier; |
| 52 class FtpTransactionFactory; | |
| 53 class HostMappingRules; | 52 class HostMappingRules; |
| 54 class HttpAuthHandlerFactory; | 53 class HttpAuthHandlerFactory; |
| 55 class HttpServerProperties; | 54 class HttpServerProperties; |
| 56 class ProxyConfigService; | 55 class ProxyConfigService; |
| 57 class SocketPerformanceWatcherFactory; | 56 class SocketPerformanceWatcherFactory; |
| 58 class URLRequestContext; | 57 class URLRequestContext; |
| 59 class URLRequestInterceptor; | 58 class URLRequestInterceptor; |
| 60 | 59 |
| 61 class NET_EXPORT URLRequestContextBuilder { | 60 class NET_EXPORT URLRequestContextBuilder { |
| 62 public: | 61 public: |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 // Not owned by the context builder. Once it is set to a non-null value, it | 367 // Not owned by the context builder. Once it is set to a non-null value, it |
| 369 // is guaranteed to be non-null during the lifetime of |this|. | 368 // is guaranteed to be non-null during the lifetime of |this|. |
| 370 SocketPerformanceWatcherFactory* socket_performance_watcher_factory_; | 369 SocketPerformanceWatcherFactory* socket_performance_watcher_factory_; |
| 371 | 370 |
| 372 DISALLOW_COPY_AND_ASSIGN(URLRequestContextBuilder); | 371 DISALLOW_COPY_AND_ASSIGN(URLRequestContextBuilder); |
| 373 }; | 372 }; |
| 374 | 373 |
| 375 } // namespace net | 374 } // namespace net |
| 376 | 375 |
| 377 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_ | 376 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_BUILDER_H_ |
| OLD | NEW |