| Index: components/cronet/url_request_context_config.h | 
| diff --git a/components/cronet/url_request_context_config.h b/components/cronet/url_request_context_config.h | 
| index d21cc409474a0b64c8d03a74b630b9ece7d3ce32..c40a112c5b108d7638349ecb7d3080d2054981e2 100644 | 
| --- a/components/cronet/url_request_context_config.h | 
| +++ b/components/cronet/url_request_context_config.h | 
| @@ -12,6 +12,7 @@ | 
| #include "base/memory/scoped_vector.h" | 
|  | 
| namespace net { | 
| +class CertVerifier; | 
| class URLRequestContextBuilder; | 
| }  // namespace net | 
|  | 
| @@ -82,6 +83,9 @@ struct URLRequestContextConfig { | 
| std::string data_reduction_fallback_proxy; | 
| std::string data_reduction_secure_proxy_check_url; | 
|  | 
| +  // Certificate verifier for testing. | 
| +  scoped_ptr<net::CertVerifier> mock_cert_verifier; | 
| + | 
| private: | 
| DISALLOW_COPY_AND_ASSIGN(URLRequestContextConfig); | 
| }; | 
|  |