blob: 24d3f32ced1781303d62c109f2976cb13c2ab7a1 [file] [log] [blame]
// Copyright 2019 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_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_
#define CHROME_BROWSER_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class SerialChooserContext;
class Profile;
class SerialChooserContextFactory : public BrowserContextKeyedServiceFactory {
public:
static SerialChooserContext* GetForProfile(Profile* profile);
static SerialChooserContext* GetForProfileIfExists(Profile* profile);
static SerialChooserContextFactory* GetInstance();
SerialChooserContextFactory(const SerialChooserContextFactory&) = delete;
SerialChooserContextFactory& operator=(const SerialChooserContextFactory&) =
delete;
private:
friend struct base::DefaultSingletonTraits<SerialChooserContextFactory>;
SerialChooserContextFactory();
~SerialChooserContextFactory() override;
// BrowserContextKeyedServiceFactory methods:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
void BrowserContextShutdown(content::BrowserContext* context) override;
};
#endif // CHROME_BROWSER_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_