blob: 533b3a7dd1bf551159994adb3ba9750abe1b2612 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_CROSTINI_CROSTINI_MANAGER_FACTORY_H_
#define CHROME_BROWSER_CHROMEOS_CROSTINI_CROSTINI_MANAGER_FACTORY_H_
#include "base/macros.h"
#include "base/no_destructor.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class Profile;
namespace crostini {
class CrostiniManager;
class CrostiniManagerFactory : public BrowserContextKeyedServiceFactory {
public:
static CrostiniManager* GetForProfile(Profile* profile);
static CrostiniManagerFactory* GetInstance();
private:
friend class base::NoDestructor<CrostiniManagerFactory>;
CrostiniManagerFactory();
~CrostiniManagerFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
DISALLOW_COPY_AND_ASSIGN(CrostiniManagerFactory);
};
} // namespace crostini
#endif // CHROME_BROWSER_CHROMEOS_CROSTINI_CROSTINI_MANAGER_FACTORY_H_