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

Side by Side Diff: net/url_request/url_request_context_builder.h

Issue 2531373002: net: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase on top of master branch Created 4 years 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/url_request/url_request.h ('k') | net/url_request/url_request_context_getter.h » ('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 (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
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
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_
OLDNEW
« no previous file with comments | « net/url_request/url_request.h ('k') | net/url_request/url_request_context_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698