blob: 7fc85abfdcfa9d32dda198703c235fae2a426ee4 [file] [log] [blame]
// Copyright 2018 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.
#ifndef SERVICES_AUDIO_SERVICE_FACTORY_H_
#define SERVICES_AUDIO_SERVICE_FACTORY_H_
#include <memory>
#include "services/audio/service.h"
#include "services/service_manager/public/cpp/binder_registry.h"
#include "services/service_manager/public/mojom/service.mojom.h"
namespace media {
class AudioManager;
} // namespace media
namespace audio {
// Creates an instance of Audio service which will live in the current process
// on top of AudioManager instance belonging to that process. Must be called on
// the device thread of AudioManager.
std::unique_ptr<Service> CreateEmbeddedService(
media::AudioManager* audio_manager,
service_manager::mojom::ServiceRequest request);
// Creates an instance of Audio service which will live in the current process
// and will create and own an AudioManager instance.
std::unique_ptr<Service> CreateStandaloneService(
std::unique_ptr<service_manager::BinderRegistry> registry,
service_manager::mojom::ServiceRequest request);
} // namespace audio
#endif // SERVICES_AUDIO_SERVICE_FACTORY_H_