chromium/components/services/app_service/public/cpp/app_capability_access_cache_wrapper.h

// Copyright 2021 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_SERVICES_APP_SERVICE_PUBLIC_CPP_APP_CAPABILITY_ACCESS_CACHE_WRAPPER_H_
#define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_APP_CAPABILITY_ACCESS_CACHE_WRAPPER_H_

#include <map>

#include "base/component_export.h"

class AccountId;

namespace apps {

class AppCapabilityAccessCache;

// Wraps AppCapabilityAccessCache to get all AppCapabilityAccessCaches
// independently. Provides the method to get the AppCapabilityAccessCache per
// |account_id|.
class COMPONENT_EXPORT(APP_UPDATE) AppCapabilityAccessCacheWrapper {};

}  // namespace apps

#endif  // COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_APP_CAPABILITY_ACCESS_CACHE_WRAPPER_H_