Update V8 to version 4.7.53.
[chromium-blink-merge.git] / net / ssl / channel_id_store.cc
blobe1835ff1546a645d22ef3226a6e099b8800ad57a
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "crypto/ec_private_key.h"
6 #include "net/ssl/channel_id_store.h"
8 namespace net {
10 ChannelIDStore::ChannelID::ChannelID() {
13 ChannelIDStore::ChannelID::ChannelID(const std::string& server_identifier,
14 base::Time creation_time,
15 scoped_ptr<crypto::ECPrivateKey> key)
16 : server_identifier_(server_identifier),
17 creation_time_(creation_time),
18 key_(key.Pass()) {
21 ChannelIDStore::ChannelID::ChannelID(const ChannelID& other)
22 : server_identifier_(other.server_identifier_),
23 creation_time_(other.creation_time_),
24 key_(other.key_ ? other.key_->Copy() : nullptr) {
27 ChannelIDStore::ChannelID& ChannelIDStore::ChannelID::operator=(
28 const ChannelID& other) {
29 if (&other == this)
30 return *this;
31 server_identifier_ = other.server_identifier_;
32 creation_time_ = other.creation_time_;
33 if (other.key_)
34 key_.reset(other.key_->Copy());
35 return *this;
38 ChannelIDStore::ChannelID::~ChannelID() {}
40 void ChannelIDStore::InitializeFrom(const ChannelIDList& list) {
41 for (ChannelIDList::const_iterator i = list.begin(); i != list.end();
42 ++i) {
43 SetChannelID(scoped_ptr<ChannelID>(new ChannelID(*i)));
47 } // namespace net