chromium/chrome/browser/apps/app_service/publishers/standalone_browser_extension_apps_factory.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_SERVICE_PUBLISHERS_STANDALONE_BROWSER_EXTENSION_APPS_FACTORY_H_
#define CHROME_BROWSER_APPS_APP_SERVICE_PUBLISHERS_STANDALONE_BROWSER_EXTENSION_APPS_FACTORY_H_

#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"

class Profile;

namespace apps {

class StandaloneBrowserExtensionApps;

// Singleton that owns all StandaloneBrowserExtensionApps publisher for
// Chrome Apps and associates them with Profiles.
class StandaloneBrowserExtensionAppsFactoryForApp
    : public ProfileKeyedServiceFactory {};

// Singleton that owns all StandaloneBrowserExtensionApps publisher for
// Extensions and associates them with Profiles.
class StandaloneBrowserExtensionAppsFactoryForExtension
    : public ProfileKeyedServiceFactory {};

}  // namespace apps

#endif  // CHROME_BROWSER_APPS_APP_SERVICE_PUBLISHERS_STANDALONE_BROWSER_EXTENSION_APPS_FACTORY_H_