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

Unified Diff: net/ssl/channel_id_store.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/ssl/channel_id_store.h ('k') | net/ssl/client_cert_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/channel_id_store.cc
diff --git a/net/ssl/channel_id_store.cc b/net/ssl/channel_id_store.cc
deleted file mode 100644
index 930ef8f4ed993d038bb390524704d2c3533e10b1..0000000000000000000000000000000000000000
--- a/net/ssl/channel_id_store.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 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/ssl/channel_id_store.h"
-
-namespace net {
-
-ChannelIDStore::ChannelID::ChannelID() {
-}
-
-ChannelIDStore::ChannelID::ChannelID(
- const std::string& server_identifier,
- base::Time creation_time,
- base::Time expiration_time,
- const std::string& private_key,
- const std::string& cert)
- : server_identifier_(server_identifier),
- creation_time_(creation_time),
- expiration_time_(expiration_time),
- private_key_(private_key),
- cert_(cert) {}
-
-ChannelIDStore::ChannelID::~ChannelID() {}
-
-void ChannelIDStore::InitializeFrom(const ChannelIDList& list) {
- for (ChannelIDList::const_iterator i = list.begin(); i != list.end();
- ++i) {
- SetChannelID(i->server_identifier(), i->creation_time(),
- i->expiration_time(), i->private_key(), i->cert());
- }
-}
-
-} // namespace net
« no previous file with comments | « net/ssl/channel_id_store.h ('k') | net/ssl/client_cert_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698