| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/ssl/ssl_client_auth_handler_mock.h" | |
| 6 | |
| 7 SSLClientAuthHandlerMock::SSLClientAuthHandlerMock( | |
| 8 net::URLRequest* request, | |
| 9 net::SSLCertRequestInfo* cert_request_info) | |
| 10 : SSLClientAuthHandler(request, cert_request_info) { | |
| 11 } | |
| 12 | |
| 13 SSLClientAuthHandlerMock::~SSLClientAuthHandlerMock() { | |
| 14 // Hack to avoid destructor calling request_->ContinueWithCertificate. | |
| 15 OnRequestCancelled(); | |
| 16 } | |
| OLD | NEW |