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

Unified Diff: net/url_request/url_request_context_builder.h

Issue 2907463002: Split HttpNetworkSession::Params into two structs. (Closed)
Patch Set: Fix Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: net/url_request/url_request_context_builder.h
diff --git a/net/url_request/url_request_context_builder.h b/net/url_request/url_request_context_builder.h
index 45526b0aca6ee0eadebd31643ee0e600d46160ed..a8b3d2486313bd10588bcf5bf157b3b89cbca5b9 100644
--- a/net/url_request/url_request_context_builder.h
+++ b/net/url_request/url_request_context_builder.h
@@ -130,12 +130,12 @@ class NET_EXPORT URLRequestContextBuilder {
}
// Extracts the component pointers required to construct an HttpNetworkSession
- // and copies them into the Params used to create the session. This function
- // should be used to ensure that a context and its associated
- // HttpNetworkSession are consistent.
+ // and copies them into the HttpNetworkSession::Context used to create the
+ // session. This function should be used to ensure that a context and its
+ // associated HttpNetworkSession are consistent.
static void SetHttpNetworkSessionComponents(
- const URLRequestContext* context,
- HttpNetworkSession::Params* params);
+ const URLRequestContext* request_context,
+ HttpNetworkSession::Context* session_context);
// These functions are mutually exclusive. The ProxyConfigService, if
// set, will be used to construct a ProxyService.

Powered by Google App Engine
This is Rietveld 408576698