blob: 73f167218218e156d7b0eec138cc8ab425a3a076 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2016 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
vasilvv872e7a32019-03-12 16:42:44 -07005#include <string>
6
QUICHE teama6ef0a62019-03-07 20:34:33 -05007#include "net/third_party/quiche/src/quic/core/crypto/proof_source.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -05008
9namespace quic {
10
vasilvvc48c8712019-03-11 13:38:16 -070011ProofSource::Chain::Chain(const std::vector<std::string>& certs)
QUICHE teama6ef0a62019-03-07 20:34:33 -050012 : certs(certs) {}
13
14ProofSource::Chain::~Chain() {}
15
16} // namespace quic