chromium/content/browser/renderer_host/media/audio_service_listener.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/renderer_host/media/audio_service_listener.h"

#include <utility>

#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
#include "base/process/process.h"
#include "base/time/default_tick_clock.h"
#include "content/browser/media/audio_log_factory.h"
#include "content/public/browser/audio_service.h"
#include "content/public/common/content_features.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "services/audio/public/mojom/audio_service.mojom.h"
#include "services/audio/public/mojom/log_factory_manager.mojom.h"

namespace content {

AudioServiceListener::AudioServiceListener() {}

AudioServiceListener::~AudioServiceListener() {}

base::Process AudioServiceListener::GetProcess() const {}

void AudioServiceListener::Init(
    std::vector<ServiceProcessInfo> running_service_processes) {}

void AudioServiceListener::OnServiceProcessLaunched(
    const ServiceProcessInfo& info) {}

void AudioServiceListener::OnServiceProcessTerminatedNormally(
    const ServiceProcessInfo& info) {}

void AudioServiceListener::OnServiceProcessCrashed(
    const ServiceProcessInfo& info) {}

void AudioServiceListener::MaybeSetLogFactory() {}

}  // namespace content