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

Unified Diff: net/cert/ct_known_logs.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/cert/ct_known_logs.h ('k') | net/cert/ct_known_logs_static.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/ct_known_logs.cc
diff --git a/net/cert/ct_known_logs.cc b/net/cert/ct_known_logs.cc
deleted file mode 100644
index 3002689d9b81611e48aabe78f24623357ca68888..0000000000000000000000000000000000000000
--- a/net/cert/ct_known_logs.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2013 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/cert/ct_known_logs.h"
-
-#include <string>
-
-#include "base/macros.h"
-#include "base/strings/string_piece.h"
-#include "net/cert/ct_known_logs_static.h"
-#include "net/cert/ct_log_verifier.h"
-
-namespace net {
-
-namespace ct {
-
-ScopedVector<CTLogVerifier> CreateLogVerifiersForKnownLogs() {
- ScopedVector<CTLogVerifier> verifiers;
- for (size_t i = 0; i < arraysize(kCTLogList); ++i) {
- const CTLogInfo& log(kCTLogList[i]);
- base::StringPiece key(log.log_key, arraysize(log.log_key) - 1);
-
- verifiers.push_back(CTLogVerifier::Create(key, log.log_name).release());
- }
-
- return verifiers.Pass();
-}
-
-} // namespace ct
-
-} // namespace net
-
« no previous file with comments | « net/cert/ct_known_logs.h ('k') | net/cert/ct_known_logs_static.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698