| 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 a37e30a01c785a5b67a633f9e70d4984956a0f74..fd3c4a263a97c60555e85736547d5279dd286bfe 100644
 | 
| --- a/net/url_request/url_request_context_storage.h
 | 
| +++ b/net/url_request/url_request_context_storage.h
 | 
| @@ -15,7 +15,6 @@ namespace net {
 | 
|  class CertVerifier;
 | 
|  class ChannelIDService;
 | 
|  class CookieStore;
 | 
| -class FraudulentCertificateReporter;
 | 
|  class FtpTransactionFactory;
 | 
|  class HostResolver;
 | 
|  class HttpAuthHandlerFactory;
 | 
| @@ -50,8 +49,6 @@ class NET_EXPORT URLRequestContextStorage {
 | 
|    void set_host_resolver(scoped_ptr<HostResolver> host_resolver);
 | 
|    void set_cert_verifier(CertVerifier* cert_verifier);
 | 
|    void set_channel_id_service(scoped_ptr<ChannelIDService> channel_id_service);
 | 
| -  void set_fraudulent_certificate_reporter(
 | 
| -      FraudulentCertificateReporter* fraudulent_certificate_reporter);
 | 
|    void set_http_auth_handler_factory(
 | 
|        HttpAuthHandlerFactory* http_auth_handler_factory);
 | 
|    void set_proxy_service(ProxyService* proxy_service);
 | 
| @@ -83,7 +80,6 @@ class NET_EXPORT URLRequestContextStorage {
 | 
|    scoped_ptr<CertVerifier> cert_verifier_;
 | 
|    // The ChannelIDService must outlive the HttpTransactionFactory.
 | 
|    scoped_ptr<ChannelIDService> channel_id_service_;
 | 
| -  scoped_ptr<FraudulentCertificateReporter> fraudulent_certificate_reporter_;
 | 
|    scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_;
 | 
|    scoped_ptr<ProxyService> proxy_service_;
 | 
|    // TODO(willchan): Remove refcounting on these members.
 | 
| 
 |