| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ | 5 #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ |
| 6 #define CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ | 6 #define CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 protected: | 32 protected: |
| 33 std::unique_ptr<net::URLRequest> MakeURLRequest( | 33 std::unique_ptr<net::URLRequest> MakeURLRequest( |
| 34 net::URLRequestContextGetter* context_getter); | 34 net::URLRequestContextGetter* context_getter); |
| 35 | 35 |
| 36 base::WaitableEvent io_loop_finished_event_; | 36 base::WaitableEvent io_loop_finished_event_; |
| 37 | 37 |
| 38 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_; | 38 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_; |
| 39 net::URLRequest* url_request_; | 39 net::URLRequest* url_request_; |
| 40 | 40 |
| 41 scoped_refptr<net::X509Certificate> mit_davidben_cert_; | |
| 42 scoped_refptr<net::X509Certificate> foaf_me_chromium_test_cert_; | |
| 43 scoped_refptr<net::SSLCertRequestInfo> cert_request_info_; | 41 scoped_refptr<net::SSLCertRequestInfo> cert_request_info_; |
| 44 scoped_refptr<testing::StrictMock<SSLClientAuthRequestorMock> > | 42 scoped_refptr<testing::StrictMock<SSLClientAuthRequestorMock> > |
| 45 auth_requestor_; | 43 auth_requestor_; |
| 46 }; | 44 }; |
| 47 | 45 |
| 48 #endif // CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ | 46 #endif // CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_TEST_H_ |
| OLD | NEW |