| Index: net/url_request/url_request_context_storage.h
|
| diff --git a/net/url_request/url_request_context_storage.h b/net/url_request/url_request_context_storage.h
|
| index 8ae2a0029fc4b15ce81428dc5c0e9102a2c466f4..1e62fb15f448530414861aa3942c4aa39ed57f5b 100644
|
| --- a/net/url_request/url_request_context_storage.h
|
| +++ b/net/url_request/url_request_context_storage.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -23,7 +23,7 @@ class HttpServerProperties;
|
| class HttpTransactionFactory;
|
| class NetLog;
|
| class NetworkDelegate;
|
| -class OriginBoundCertService;
|
| +class ServerBoundCertService;
|
| class ProxyService;
|
| class SSLConfigService;
|
| class TransportSecurityState;
|
| @@ -46,8 +46,8 @@ class NET_EXPORT URLRequestContextStorage {
|
| void set_net_log(NetLog* net_log);
|
| void set_host_resolver(HostResolver* host_resolver);
|
| void set_cert_verifier(CertVerifier* cert_verifier);
|
| - void set_origin_bound_cert_service(
|
| - OriginBoundCertService* origin_bound_cert_service);
|
| + void set_server_bound_cert_service(
|
| + ServerBoundCertService* server_bound_cert_service);
|
| void set_fraudulent_certificate_reporter(
|
| FraudulentCertificateReporter* fraudulent_certificate_reporter);
|
| void set_http_auth_handler_factory(
|
| @@ -75,7 +75,7 @@ class NET_EXPORT URLRequestContextStorage {
|
| scoped_ptr<NetLog> net_log_;
|
| scoped_ptr<HostResolver> host_resolver_;
|
| scoped_ptr<CertVerifier> cert_verifier_;
|
| - scoped_ptr<OriginBoundCertService> origin_bound_cert_service_;
|
| + scoped_ptr<ServerBoundCertService> server_bound_cert_service_;
|
| scoped_ptr<FraudulentCertificateReporter> fraudulent_certificate_reporter_;
|
| scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_;
|
| scoped_ptr<ProxyService> proxy_service_;
|
|
|