// Copyright 2018 The Chromium Authors // 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) { … } void HttpAuthCacheCopier::LoadHttpAuthCache(const base::UnguessableToken& key, net::HttpAuthCache* cache) { … } } // namespace network