tree: b1be192bbc8e5bc9746adff344aef151f0b4fe00 [path history] [tgz]
  1. BUILD.gn
  2. chromium_service.cc
  3. chromium_service.h
  4. crash_reporter_client.cc
  5. crash_reporter_client.h
  6. DEPS
  7. external_connector.h
  8. external_connector_impl.cc
  9. external_connector_impl.h
  10. external_service.cc
  11. external_service.h
  12. process_setup.cc
  13. process_setup.h
  14. README.md
  15. service_process.h
  16. standalone_mojo_broker.cc
  17. standalone_service_main.cc
chromecast/external_mojo/external_service_support/README.md

External Mojo service support

This directory contains utilities to ease development of Mojo services that run in processes outside of Chromium/cast_shell. The simplest model is to create a subclass of ‘ServiceProcess’ (and implement ‘ServiceProcess::Create()’ that returns an instance of that subclass), and link with ‘standalone_service_main’ to create the executable. In your ‘ServiceProcess’ implementation, you can bind to Mojo interfaces using the provided ‘Connector’ pointer, and/or register your own Mojo services for use by other processes.

The ‘ChromiumServiceWrapper’ class is intended to allow Mojo services that were intended to be embedded into cast_shell (or other ServiceManager embedder) to be moved into a completely separate process. It forwards ‘BindInterface()’ calls to the ‘service_manager::Service’ API. You can use ‘CreateChromiumServiceRequest()’ to create a ‘service_manager::ServiceRequest’ to emulate the normal service creation flow; the ‘service_manager::Service::OnStart()’ method will be called automatically.

The ‘standalone_mojo_broker’ is intended for use on platforms where there is no cast_shell running; this allows Mojo services outside of cast_shell to communicate with each other without any Chromium embedder on the system.