Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(588)

Unified Diff: net/tools/ct_mapper/entry.cc

Issue 1238413004: Framework for iterating over certificates in CT database from Chromium code. (not for review) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make samples page work Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/ct_mapper/entry.h ('k') | net/tools/ct_mapper/entry_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/tools/ct_mapper/entry.h ('k') | net/tools/ct_mapper/entry_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698