chromium/components/plus_addresses/plus_address_cache.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_CACHE_H_
#define COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_CACHE_H_

#include <memory>
#include <string>
#include <vector>

#include "base/containers/flat_set.h"
#include "base/containers/span.h"
#include "components/plus_addresses/plus_address_types.h"

namespace plus_addresses {

// An in-memory cache of PlusProfile(s) utilized by the PlusAddressService to
// store copies of existing plus profiles.
class PlusAddressCache {};

}  // namespace plus_addresses

#endif  // COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_CACHE_H_