blob: 19d658f8875c07c21104af1b0ad80ab182b47b89 [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.
#include <memory>
#include "base/message_loop/message_loop.h"
#include "services/audio/service.h"
#include "services/audio/service_factory.h"
#include "services/service_manager/public/cpp/binder_registry.h"
#include "services/service_manager/public/cpp/service_executable/service_main.h"
void ServiceMain(service_manager::mojom::ServiceRequest request) {
base::MessageLoop message_loop;
audio::CreateStandaloneService(
std::make_unique<service_manager::BinderRegistry>(), std::move(request))
->RunUntilTermination();
}