| Index: net/tools/ct_mapper/entry.cc
|
| diff --git a/net/tools/ct_mapper/entry.cc b/net/tools/ct_mapper/entry.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..289d24a5ab46503d76d9734d1a39f03eda07c06c
|
| --- /dev/null
|
| +++ b/net/tools/ct_mapper/entry.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "net/tools/ct_mapper/entry.h"
|
| +
|
| +namespace net {
|
| +
|
| +Entry::Entry() {}
|
| +
|
| +Entry::Entry(const der::Input& cert) : cert(cert) {}
|
| +
|
| +Entry::Entry(Type type, const der::Input& cert) : type(type), cert(cert) {}
|
| +
|
| +Entry::Entry(const Entry&) = default;
|
| +
|
| +Entry::~Entry() {}
|
| +
|
| +} // namespace net
|
|
|