chromium/chrome/browser/apps/app_discovery_service/app_discovery_service.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 CHROME_BROWSER_APPS_APP_DISCOVERY_SERVICE_APP_DISCOVERY_SERVICE_H_
#define CHROME_BROWSER_APPS_APP_DISCOVERY_SERVICE_APP_DISCOVERY_SERVICE_H_

#include <memory>

#include "base/callback_list.h"
#include "base/feature_list.h"
#include "chrome/browser/apps/app_discovery_service/app_discovery_util.h"
#include "components/keyed_service/core/keyed_service.h"

class Profile;

namespace apps {

class AppFetcherManager;

// API for consumers to use to fetch apps.
class AppDiscoveryService : public KeyedService {};

}  // namespace apps

#endif  // CHROME_BROWSER_APPS_APP_DISCOVERY_SERVICE_APP_DISCOVERY_SERVICE_H_