blob: 5db1cf0272b5b10c9236b11dca47a4bf6b3289f2 [file] [log] [blame]
// Copyright 2018 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 "services/network/http_auth_cache_copier.h"
#include "base/logging.h"
#include "net/http/http_auth_cache.h"
namespace network {
HttpAuthCacheCopier::HttpAuthCacheCopier() = default;
HttpAuthCacheCopier::~HttpAuthCacheCopier() = default;
base::UnguessableToken HttpAuthCacheCopier::SaveHttpAuthCache(
const net::HttpAuthCache& cache) {
base::UnguessableToken key = base::UnguessableToken::Create();
auto cache_it = caches_.emplace(std::make_pair(
key, std::make_unique<net::HttpAuthCache>(
cache.key_server_entries_by_network_isolation_key())));
DCHECK(cache_it.second);
cache_it.first->second->UpdateAllFrom(cache);
return key;
}
void HttpAuthCacheCopier::LoadHttpAuthCache(const base::UnguessableToken& key,
net::HttpAuthCache* cache) {
auto it = caches_.find(key);
if (it == caches_.end()) {
DLOG(ERROR) << "Unknown HttpAuthCache key: " << key;
return;
}
// Source and destination caches must have the same configuration.
DCHECK_EQ(cache->key_server_entries_by_network_isolation_key(),
it->second->key_server_entries_by_network_isolation_key());
cache->UpdateAllFrom(*it->second);
caches_.erase(it);
}
} // namespace network