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

Unified Diff: net/url_request/url_request_context.h

Issue 7827033: Introduce net::HttpServerPropertiesManager to manage server-specific properties. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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.h
===================================================================
--- net/url_request/url_request_context.h (revision 99284)
+++ net/url_request/url_request_context.h (working copy)
@@ -20,6 +20,7 @@
#include "net/base/ssl_config_service.h"
#include "net/base/transport_security_state.h"
#include "net/ftp/ftp_auth_cache.h"
+#include "net/spdy/spdy_config_service.h"
namespace net {
class CertVerifier;
@@ -107,6 +108,14 @@
proxy_service_ = proxy_service;
}
+ // Get the spdy config service for this context.
+ SpdyConfigService* spdy_config_service() const {
+ return spdy_config_service_;
+ }
+ void set_spdy_config_service(SpdyConfigService* service) {
+ spdy_config_service_ = service;
+ }
+
// Get the ssl config service for this context.
SSLConfigService* ssl_config_service() const { return ssl_config_service_; }
void set_ssl_config_service(SSLConfigService* service) {
@@ -211,6 +220,7 @@
DnsCertProvenanceChecker* dns_cert_checker_;
HttpAuthHandlerFactory* http_auth_handler_factory_;
ProxyService* proxy_service_;
+ scoped_refptr<SpdyConfigService> spdy_config_service_;
scoped_refptr<SSLConfigService> ssl_config_service_;
NetworkDelegate* network_delegate_;
scoped_refptr<CookieStore> cookie_store_;

Powered by Google App Engine
This is Rietveld 408576698