blob: a1ac7ac718c18bfee8c674dd3d6d6eb740d04d5c [file] [log] [blame]
[email protected]0bbd63b2013-11-29 00:02:121// Copyright 2013 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
eranmdec1c8a92016-08-08 12:08:155#include "net/cert/signed_certificate_timestamp_and_status.h"
[email protected]0bbd63b2013-11-29 00:02:126
7#include "net/cert/signed_certificate_timestamp.h"
8
9namespace net {
10
Chris Watkins68b15032017-12-01 03:07:1311SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus() =
12 default;
daniel.waxweiler88f6c692016-05-17 23:53:3313
[email protected]0bbd63b2013-11-29 00:02:1214SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus(
15 const scoped_refptr<ct::SignedCertificateTimestamp>& sct,
16 const ct::SCTVerifyStatus status)
[email protected]b34f5962014-01-08 12:37:0817 : sct(sct), status(status) {}
[email protected]0bbd63b2013-11-29 00:02:1218
vmpstracd23b72016-02-26 21:08:5519SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus(
20 const SignedCertificateTimestampAndStatus& other) = default;
21
Chris Watkins68b15032017-12-01 03:07:1322SignedCertificateTimestampAndStatus::~SignedCertificateTimestampAndStatus() =
23 default;
[email protected]0bbd63b2013-11-29 00:02:1224
25} // namespace net