#include "components/services/app_service/public/cpp/app_registry_cache_wrapper.h"
#include "base/no_destructor.h"
#include "components/account_id/account_id.h"
#include "components/services/app_service/public/cpp/app_registry_cache.h"
namespace apps {
AppRegistryCacheWrapper& AppRegistryCacheWrapper::Get() { … }
AppRegistryCacheWrapper::AppRegistryCacheWrapper() = default;
AppRegistryCacheWrapper::~AppRegistryCacheWrapper() = default;
AppRegistryCache* AppRegistryCacheWrapper::GetAppRegistryCache(
const AccountId& account_id) { … }
void AppRegistryCacheWrapper::AddAppRegistryCache(const AccountId& account_id,
AppRegistryCache* cache) { … }
void AppRegistryCacheWrapper::RemoveAppRegistryCache(AppRegistryCache* cache) { … }
void AppRegistryCacheWrapper::AddObserver(Observer* observer) { … }
void AppRegistryCacheWrapper::RemoveObserver(Observer* observer) { … }
}