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

Side by Side Diff: net/ssl/ssl_cert_request_info.cc

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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
« no previous file with comments | « net/ssl/ssl_cert_request_info.h ('k') | net/ssl/ssl_cipher_suite_names.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "net/base/ssl_cert_request_info.h" 5 #include "net/ssl/ssl_cert_request_info.h"
6 6
7 #include "net/base/x509_certificate.h" 7 #include "net/base/x509_certificate.h"
8 8
9 namespace net { 9 namespace net {
10 10
11 SSLCertRequestInfo::SSLCertRequestInfo() : is_proxy(false) { 11 SSLCertRequestInfo::SSLCertRequestInfo() : is_proxy(false) {
12 } 12 }
13 13
14 void SSLCertRequestInfo::Reset() { 14 void SSLCertRequestInfo::Reset() {
15 host_and_port.clear(); 15 host_and_port.clear();
16 is_proxy = false; 16 is_proxy = false;
17 cert_authorities.clear(); 17 cert_authorities.clear();
18 cert_key_types.clear(); 18 cert_key_types.clear();
19 client_certs.clear(); 19 client_certs.clear();
20 } 20 }
21 21
22 SSLCertRequestInfo::~SSLCertRequestInfo() { 22 SSLCertRequestInfo::~SSLCertRequestInfo() {
23 } 23 }
24 24
25 } // namespace net 25 } // namespace net
OLDNEW
« no previous file with comments | « net/ssl/ssl_cert_request_info.h ('k') | net/ssl/ssl_cipher_suite_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698