1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42

ash / webui / shortcut_customization_ui / shortcuts_app_manager_factory.h [blame]

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

#ifndef ASH_WEBUI_SHORTCUT_CUSTOMIZATION_UI_SHORTCUTS_APP_MANAGER_FACTORY_H_
#define ASH_WEBUI_SHORTCUT_CUSTOMIZATION_UI_SHORTCUTS_APP_MANAGER_FACTORY_H_

#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"

namespace ash::shortcut_ui {

class ShortcutsAppManager;

// This class is responsible for the creation of the ShortcutsAppManager.
class ShortcutsAppManagerFactory : public BrowserContextKeyedServiceFactory {
 public:
  static ShortcutsAppManager* GetForBrowserContext(
      content::BrowserContext* context);
  static ShortcutsAppManagerFactory* GetInstance();

  ShortcutsAppManagerFactory(const ShortcutsAppManagerFactory&) = delete;
  ShortcutsAppManagerFactory& operator=(const ShortcutsAppManagerFactory&) =
      delete;

 private:
  friend struct base::DefaultSingletonTraits<ShortcutsAppManagerFactory>;

  ShortcutsAppManagerFactory();
  ~ShortcutsAppManagerFactory() override;

  // BrowserContextKeyedServiceFactory:
  content::BrowserContext* GetBrowserContextToUse(
      content::BrowserContext* context) const override;
  std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
      content::BrowserContext* context) const override;
  bool ServiceIsNULLWhileTesting() const override;
};

}  // namespace ash::shortcut_ui

#endif  // ASH_WEBUI_SHORTCUT_CUSTOMIZATION_UI_SHORTCUTS_APP_MANAGER_FACTORY_H_