[email protected] | 0bbd63b | 2013-11-29 00:02:12 | [diff] [blame] | 1 | // 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 | |||||
eranm | dec1c8a9 | 2016-08-08 12:08:15 | [diff] [blame] | 5 | #include "net/cert/signed_certificate_timestamp_and_status.h" |
[email protected] | 0bbd63b | 2013-11-29 00:02:12 | [diff] [blame] | 6 | |
7 | #include "net/cert/signed_certificate_timestamp.h" | ||||
8 | |||||
9 | namespace net { | ||||
10 | |||||
Chris Watkins | 68b1503 | 2017-12-01 03:07:13 | [diff] [blame] | 11 | SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus() = |
12 | default; | ||||
daniel.waxweiler | 88f6c69 | 2016-05-17 23:53:33 | [diff] [blame] | 13 | |
[email protected] | 0bbd63b | 2013-11-29 00:02:12 | [diff] [blame] | 14 | SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus( |
15 | const scoped_refptr<ct::SignedCertificateTimestamp>& sct, | ||||
16 | const ct::SCTVerifyStatus status) | ||||
[email protected] | b34f596 | 2014-01-08 12:37:08 | [diff] [blame] | 17 | : sct(sct), status(status) {} |
[email protected] | 0bbd63b | 2013-11-29 00:02:12 | [diff] [blame] | 18 | |
vmpstr | acd23b7 | 2016-02-26 21:08:55 | [diff] [blame] | 19 | SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus( |
20 | const SignedCertificateTimestampAndStatus& other) = default; | ||||
21 | |||||
Chris Watkins | 68b1503 | 2017-12-01 03:07:13 | [diff] [blame] | 22 | SignedCertificateTimestampAndStatus::~SignedCertificateTimestampAndStatus() = |
23 | default; | ||||
[email protected] | 0bbd63b | 2013-11-29 00:02:12 | [diff] [blame] | 24 | |
25 | } // namespace net |