blob: 227263de90d3b574a122b2dc1c5f67d62cbd5cc4 [file] [log] [blame]
// Copyright 2020 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 "chrome/browser/speech/speech_recognition_service_factory.h"
#include "base/no_destructor.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/speech/speech_recognition_service.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
speech::SpeechRecognitionService*
SpeechRecognitionServiceFactory::GetForProfile(Profile* profile) {
return static_cast<speech::SpeechRecognitionService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
SpeechRecognitionServiceFactory*
SpeechRecognitionServiceFactory::GetInstance() {
static base::NoDestructor<SpeechRecognitionServiceFactory> instance;
return instance.get();
}
SpeechRecognitionServiceFactory::SpeechRecognitionServiceFactory()
: BrowserContextKeyedServiceFactory(
"SpeechRecognitionService",
BrowserContextDependencyManager::GetInstance()) {}
SpeechRecognitionServiceFactory::~SpeechRecognitionServiceFactory() = default;
KeyedService* SpeechRecognitionServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
return new speech::SpeechRecognitionService(context);
}
// Incognito profiles should use their own instance of the browser context.
content::BrowserContext*
SpeechRecognitionServiceFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return chrome::GetBrowserContextOwnInstanceInIncognito(context);
}