Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Side by Side Diff: chrome/browser/ssl/ssl_client_auth_requestor_mock.cc

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/ssl/ssl_client_auth_requestor_mock.h" 5 #include "chrome/browser/ssl/ssl_client_auth_requestor_mock.h"
6 6
7 #include "net/http/http_transaction_factory.h" 7 #include "net/http/http_transaction_factory.h"
8 #include "net/url_request/url_request.h" 8 #include "net/url_request/url_request.h"
9 #include "net/url_request/url_request_context.h" 9 #include "net/url_request/url_request_context.h"
10 10
11 SSLClientAuthRequestorMock::SSLClientAuthRequestorMock( 11 SSLClientAuthRequestorMock::SSLClientAuthRequestorMock(
12 net::URLRequest* request, 12 net::URLRequest* request,
13 net::SSLCertRequestInfo* cert_request_info) 13 net::SSLCertRequestInfo* cert_request_info)
14 : cert_request_info_(cert_request_info), 14 : cert_request_info_(cert_request_info),
15 http_network_session_( 15 http_network_session_(
16 request->context()->http_transaction_factory()->GetSession()) { 16 request->context()->http_transaction_factory()->GetSession()) {
17 } 17 }
18 18
19 SSLClientAuthRequestorMock::~SSLClientAuthRequestorMock() { 19 SSLClientAuthRequestorMock::~SSLClientAuthRequestorMock() {}
20 }
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_requestor_mock.h ('k') | chrome/browser/status_icons/desktop_notification_balloon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698