tree: df386b4bfd0fe44d6c5ef0ab6b82e358fd948351 [path history] [tgz]
  1. BUILD.gn
  2. DEPS
  3. descriptors.h
  4. embedded_instance_manager.cc
  5. embedded_instance_manager.h
  6. embedded_instance_manager_unittest.cc
  7. embedded_service_info.cc
  8. embedded_service_info.h
  9. embedded_service_runner.cc
  10. embedded_service_runner.h
  11. mac_init.h
  12. mac_init.mm
  13. main.cc
  14. main.h
  15. main_delegate.cc
  16. main_delegate.h
  17. manifest_utils.cc
  18. manifest_utils.h
  19. manifest_utils_unittest.cc
  20. process_type.h
  21. README.md
  22. result_codes.h
  23. service_manager_embedder_export.h
  24. service_manager_embedder_switches_export.h
  25. set_process_title.cc
  26. set_process_title.h
  27. set_process_title_linux.cc
  28. set_process_title_linux.h
  29. shared_file_util.cc
  30. shared_file_util.h
  31. switches.cc
  32. switches.h
services/service_manager/embedder/README.md

Service Manager Embedder API

The Service Manager is a library for opaquely managing service process launch, sandboxing, and lifetime; and for brokering Mojo interface connections among services.

The Service Manager must be configured with a static set of declarative service definitions. The embedder API provides a means of embedding core Service Manager functionality into a standalone executable, delegating configuration and assorted implementation details to the embedder.

As one example, the Content layer of Chromium embeds the Service Manager via this API, and there it's used [WIP] to drive all process management and IPC setup across the system.

This API is a work in progress, and more details will be documented here as the API is stabilized.