chromium/chrome/browser/accessibility/live_caption/live_caption_controller_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/accessibility/live_caption/live_caption_controller_factory.h"

#include "base/no_destructor.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "components/live_caption/live_caption_controller.h"

#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "chrome/browser/ash/profiles/profile_helper.h"
#endif

namespace captions {

// static
LiveCaptionController* LiveCaptionControllerFactory::GetForProfile(
    Profile* profile) {}

// static
LiveCaptionController* LiveCaptionControllerFactory::GetForProfileIfExists(
    Profile* profile) {}

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

LiveCaptionControllerFactory::LiveCaptionControllerFactory()
    :{}

LiveCaptionControllerFactory::~LiveCaptionControllerFactory() = default;

bool LiveCaptionControllerFactory::ServiceIsCreatedWithBrowserContext() const {}

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

}  // namespace captions