forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannel_id_store.cc
53 lines (41 loc) · 1.5 KB
/
channel_id_store.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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"
#include <utility>
#include "crypto/ec_private_key.h"
namespace net {
ChannelIDStore::ChannelID::ChannelID() {
}
ChannelIDStore::ChannelID::ChannelID(const std::string& server_identifier,
base::Time creation_time,
std::unique_ptr<crypto::ECPrivateKey> key)
: server_identifier_(server_identifier),
creation_time_(creation_time),
key_(std::move(key)) {}
ChannelIDStore::ChannelID::ChannelID(const ChannelID& other)
: server_identifier_(other.server_identifier_),
creation_time_(other.creation_time_),
key_(other.key_ ? other.key_->Copy() : nullptr) {
}
ChannelIDStore::ChannelID& ChannelIDStore::ChannelID::operator=(
const ChannelID& other) {
if (&other == this)
return *this;
server_identifier_ = other.server_identifier_;
creation_time_ = other.creation_time_;
if (other.key_)
key_ = other.key_->Copy();
return *this;
}
ChannelIDStore::ChannelID::~ChannelID() {}
ChannelIDStore::~ChannelIDStore() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
}
void ChannelIDStore::InitializeFrom(const ChannelIDList& list) {
for (ChannelIDList::const_iterator i = list.begin(); i != list.end();
++i) {
SetChannelID(std::unique_ptr<ChannelID>(new ChannelID(*i)));
}
}
} // namespace net