| // Copyright 2015 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 "base/at_exit.h" |
| #include "base/bind.h" |
| #include "base/logging.h" |
| #include "base/memory/ptr_util.h" |
| #include "media/mojo/services/mojo_media_application_factory.h" |
| #include "services/shell/public/c/main.h" |
| #include "services/shell/public/cpp/service_runner.h" |
| |
| namespace { |
| |
| shell::ServiceRunner* g_runner = nullptr; |
| |
| void QuitApplication() { |
| DCHECK(g_runner); |
| g_runner->Quit(); |
| } |
| |
| } // namespace |
| |
| MojoResult ServiceMain(MojoHandle mojo_handle) { |
| // Enable logging. |
| base::AtExitManager at_exit; |
| shell::ServiceRunner::InitBaseCommandLine(); |
| |
| logging::LoggingSettings settings; |
| settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; |
| logging::InitLogging(settings); |
| |
| std::unique_ptr<shell::Service> service = |
| media::CreateMojoMediaApplication(base::Bind(&QuitApplication)); |
| shell::ServiceRunner runner(service.release()); |
| g_runner = &runner; |
| return runner.Run(mojo_handle, false /* init_base */); |
| } |