2020-09-28 16:22:03 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_
|
2020-09-28 16:22:03 +00:00
|
|
|
|
|
|
|
#include "base/memory/singleton.h"
|
|
|
|
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
|
|
|
|
#include "shell/browser/serial/serial_chooser_context.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
class SerialChooserContext;
|
|
|
|
|
|
|
|
class SerialChooserContextFactory : public BrowserContextKeyedServiceFactory {
|
|
|
|
public:
|
|
|
|
static SerialChooserContext* GetForBrowserContext(
|
|
|
|
content::BrowserContext* context);
|
|
|
|
static SerialChooserContextFactory* GetInstance();
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend struct base::DefaultSingletonTraits<SerialChooserContextFactory>;
|
|
|
|
|
|
|
|
SerialChooserContextFactory();
|
|
|
|
~SerialChooserContextFactory() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
SerialChooserContextFactory(const SerialChooserContextFactory&) = delete;
|
|
|
|
SerialChooserContextFactory& operator=(const SerialChooserContextFactory&) =
|
|
|
|
delete;
|
|
|
|
|
2020-09-28 16:22:03 +00:00
|
|
|
// BrowserContextKeyedServiceFactory methods:
|
|
|
|
KeyedService* BuildServiceInstanceFor(
|
|
|
|
content::BrowserContext* context) const override;
|
|
|
|
content::BrowserContext* GetBrowserContextToUse(
|
|
|
|
content::BrowserContext* context) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_SERIAL_SERIAL_CHOOSER_CONTEXT_FACTORY_H_
|