electron/shell/browser/serial/serial_chooser_context_factory.cc
trop[bot] 7331e5dfb1
refactor: prefer using base::NoDestructor to base::{Singleton,LazyInstance} (#41424)
refactor: prefer using base::NoDestructor to base::{Singleton,LazyInstance}

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
2024-02-28 11:38:49 +09:00

46 lines
1.6 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/serial/serial_chooser_context_factory.h"
#include "base/no_destructor.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "shell/browser/electron_browser_context.h"
#include "shell/browser/serial/serial_chooser_context.h"
namespace electron {
SerialChooserContextFactory::SerialChooserContextFactory()
: BrowserContextKeyedServiceFactory(
"SerialChooserContext",
BrowserContextDependencyManager::GetInstance()) {}
SerialChooserContextFactory::~SerialChooserContextFactory() = default;
KeyedService* SerialChooserContextFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
auto* browser_context =
static_cast<electron::ElectronBrowserContext*>(context);
return new SerialChooserContext(browser_context);
}
// static
SerialChooserContextFactory* SerialChooserContextFactory::GetInstance() {
static base::NoDestructor<SerialChooserContextFactory> instance;
return instance.get();
}
// static
SerialChooserContext* SerialChooserContextFactory::GetForBrowserContext(
content::BrowserContext* context) {
return static_cast<SerialChooserContext*>(
GetInstance()->GetServiceForBrowserContext(context, true));
}
content::BrowserContext* SerialChooserContextFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return context;
}
} // namespace electron