2022-11-22 21:50:32 +00:00
|
|
|
// Copyright (c) 2022 Microsoft, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "shell/browser/usb/usb_chooser_context_factory.h"
|
|
|
|
|
2024-02-23 09:35:20 +00:00
|
|
|
#include "base/no_destructor.h"
|
2022-11-22 21:50:32 +00:00
|
|
|
#include "components/keyed_service/content/browser_context_dependency_manager.h"
|
|
|
|
#include "shell/browser/electron_browser_context.h"
|
|
|
|
#include "shell/browser/usb/usb_chooser_context.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
UsbChooserContextFactory::UsbChooserContextFactory()
|
|
|
|
: BrowserContextKeyedServiceFactory(
|
|
|
|
"UsbChooserContext",
|
|
|
|
BrowserContextDependencyManager::GetInstance()) {}
|
|
|
|
|
2023-04-26 14:09:54 +00:00
|
|
|
UsbChooserContextFactory::~UsbChooserContextFactory() = default;
|
2022-11-22 21:50:32 +00:00
|
|
|
|
|
|
|
KeyedService* UsbChooserContextFactory::BuildServiceInstanceFor(
|
|
|
|
content::BrowserContext* context) const {
|
|
|
|
auto* browser_context =
|
|
|
|
static_cast<electron::ElectronBrowserContext*>(context);
|
|
|
|
return new UsbChooserContext(browser_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
UsbChooserContextFactory* UsbChooserContextFactory::GetInstance() {
|
2024-02-23 09:35:20 +00:00
|
|
|
static base::NoDestructor<UsbChooserContextFactory> instance;
|
|
|
|
return instance.get();
|
2022-11-22 21:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
UsbChooserContext* UsbChooserContextFactory::GetForBrowserContext(
|
|
|
|
content::BrowserContext* context) {
|
|
|
|
return static_cast<UsbChooserContext*>(
|
|
|
|
GetInstance()->GetServiceForBrowserContext(context, /*create=*/true));
|
|
|
|
}
|
|
|
|
|
|
|
|
UsbChooserContext* UsbChooserContextFactory::GetForBrowserContextIfExists(
|
|
|
|
content::BrowserContext* context) {
|
|
|
|
return static_cast<UsbChooserContext*>(
|
|
|
|
GetInstance()->GetServiceForBrowserContext(context, /*create=*/false));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|