chromium/components/services/app_service/public/cpp/app_registry_cache_wrapper.cc

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

#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 {

// static
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) {}

}  // namespace apps