748f293400
* refactor: update BadgeManagerFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update NetworkContextServiceFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update ElectronExtensionSystemFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update UsbChooserContextFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update UsbHidChooserContextFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update SerialChooserContextFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: update FileSystemAccessPermissionContextFactory Co-authored-by: Charles Kerr <charles@charleskerr.com> * empty commit --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr <charles@charleskerr.com>
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
// 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.
|
|
|
|
#include "shell/browser/hid/hid_chooser_context_factory.h"
|
|
|
|
#include "components/keyed_service/content/browser_context_dependency_manager.h"
|
|
#include "shell/browser/electron_browser_context.h"
|
|
#include "shell/browser/hid/hid_chooser_context.h"
|
|
|
|
namespace electron {
|
|
|
|
// static
|
|
HidChooserContextFactory* HidChooserContextFactory::GetInstance() {
|
|
static base::NoDestructor<HidChooserContextFactory> factory;
|
|
return factory.get();
|
|
}
|
|
|
|
// static
|
|
HidChooserContext* HidChooserContextFactory::GetForBrowserContext(
|
|
content::BrowserContext* context) {
|
|
return static_cast<HidChooserContext*>(
|
|
GetInstance()->GetServiceForBrowserContext(context, true));
|
|
}
|
|
|
|
// static
|
|
HidChooserContext* HidChooserContextFactory::GetForBrowserContextIfExists(
|
|
content::BrowserContext* context) {
|
|
return static_cast<HidChooserContext*>(
|
|
GetInstance()->GetServiceForBrowserContext(context, /*create=*/false));
|
|
}
|
|
|
|
HidChooserContextFactory::HidChooserContextFactory()
|
|
: BrowserContextKeyedServiceFactory(
|
|
"HidChooserContext",
|
|
BrowserContextDependencyManager::GetInstance()) {}
|
|
|
|
HidChooserContextFactory::~HidChooserContextFactory() = default;
|
|
|
|
std::unique_ptr<KeyedService>
|
|
HidChooserContextFactory::BuildServiceInstanceForBrowserContext(
|
|
content::BrowserContext* context) const {
|
|
return std::make_unique<HidChooserContext>(
|
|
static_cast<electron::ElectronBrowserContext*>(context));
|
|
}
|
|
|
|
content::BrowserContext* HidChooserContextFactory::GetBrowserContextToUse(
|
|
content::BrowserContext* context) const {
|
|
return context;
|
|
}
|
|
|
|
} // namespace electron
|