blob: 768e3a08612d12abb852a3c5d1dc8234b6452bb8 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_MANAGER_IN_MEMORY_H_
#define SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_MANAGER_IN_MEMORY_H_
#include "base/memory/weak_ptr.h"
#include "services/network/shared_dictionary/shared_dictionary_manager.h"
namespace network {
class SharedDictionaryStorage;
// A SharedDictionaryManager which keeps all dictionary information in memory.
class SharedDictionaryManagerInMemory : public SharedDictionaryManager {
public:
explicit SharedDictionaryManagerInMemory(uint64_t cache_max_size);
~SharedDictionaryManagerInMemory() override;
SharedDictionaryManagerInMemory(const SharedDictionaryManagerInMemory&) =
delete;
SharedDictionaryManagerInMemory& operator=(
const SharedDictionaryManagerInMemory&) = delete;
// SharedDictionaryManager
scoped_refptr<SharedDictionaryStorage> CreateStorage(
const net::SharedDictionaryStorageIsolationKey& isolation_key) override;
void SetCacheMaxSize(uint64_t cache_max_size) override;
void ClearData(base::Time start_time,
base::Time end_time,
base::RepeatingCallback<bool(const GURL&)> url_matcher,
base::OnceClosure callback) override;
void MaybeRunCacheEviction();
private:
uint64_t cache_max_size_;
base::WeakPtrFactory<SharedDictionaryManagerInMemory> weak_factory_{this};
};
} // namespace network
#endif // SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_MANAGER_IN_MEMORY_H_