chromium/chrome/browser/speech/speech_recognition_service_factory.cc

// Copyright 2020 The Chromium Authors
// 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/profile.h"
#include "chrome/browser/speech/chrome_speech_recognition_service.h"
#include "chrome/browser/speech/speech_recognition_service.h"

// static
speech::SpeechRecognitionService*
SpeechRecognitionServiceFactory::GetForProfile(Profile* profile) {}

// static
SpeechRecognitionServiceFactory*
SpeechRecognitionServiceFactory::GetInstance() {}

SpeechRecognitionServiceFactory::SpeechRecognitionServiceFactory()
    :{}

SpeechRecognitionServiceFactory::~SpeechRecognitionServiceFactory() = default;

std::unique_ptr<KeyedService>
SpeechRecognitionServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

// static
void SpeechRecognitionServiceFactory::EnsureFactoryBuilt() {}