Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ssl / ssl_client_auth_requestor_mock.cc
blobb179d1152ffbf20c0d67da1d5f0bea765c3b29a9
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.
5 #include "chrome/browser/ssl/ssl_client_auth_requestor_mock.h"
7 #include "net/http/http_transaction_factory.h"
8 #include "net/url_request/url_request.h"
9 #include "net/url_request/url_request_context.h"
11 SSLClientAuthRequestorMock::SSLClientAuthRequestorMock(
12 net::URLRequest* request,
13 net::SSLCertRequestInfo* cert_request_info)
14 : cert_request_info_(cert_request_info),
15 http_network_session_(
16 request->context()->http_transaction_factory()->GetSession()) {
19 SSLClientAuthRequestorMock::~SSLClientAuthRequestorMock() {}