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

Unified Diff: net/ssl/server_bound_cert_store.cc

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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
Index: net/ssl/server_bound_cert_store.cc
diff --git a/net/ssl/server_bound_cert_store.cc b/net/ssl/server_bound_cert_store.cc
deleted file mode 100644
index e778362c0bac0c6a46d1f50bde18be7e52c555ec..0000000000000000000000000000000000000000
--- a/net/ssl/server_bound_cert_store.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2012 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/server_bound_cert_store.h"
-
-namespace net {
-
-ServerBoundCertStore::ServerBoundCert::ServerBoundCert() {
-}
-
-ServerBoundCertStore::ServerBoundCert::ServerBoundCert(
- 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) {}
-
-ServerBoundCertStore::ServerBoundCert::~ServerBoundCert() {}
-
-void ServerBoundCertStore::InitializeFrom(const ServerBoundCertList& list) {
- for (ServerBoundCertList::const_iterator i = list.begin(); i != list.end();
- ++i) {
- SetServerBoundCert(i->server_identifier(), i->creation_time(),
- i->expiration_time(), i->private_key(), i->cert());
- }
-}
-
-} // namespace net

Powered by Google App Engine
This is Rietveld 408576698