• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2012 The Chromium Authors
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 "net/ssl/ssl_info.h"
6 
7 #include "net/cert/x509_certificate.h"
8 
9 namespace net {
10 
11 SSLInfo::SSLInfo() = default;
12 
13 SSLInfo::SSLInfo(const SSLInfo& info) = default;
14 
15 SSLInfo::~SSLInfo() = default;
16 
17 SSLInfo& SSLInfo::operator=(const SSLInfo& info) = default;
18 
Reset()19 void SSLInfo::Reset() {
20   *this = SSLInfo();
21 }
22 
23 }  // namespace net
24