tree: 0fbd6c2c41a2e3c3e564c7f0ae8eef7efdde4ad6 [path history] [tgz]
  1. BUILD.gn
  2. configuration.h
  3. embedder.cc
  4. embedder.h
  5. embedder_internal.h
  6. embedder_unittest.cc
  7. entrypoints.cc
  8. entrypoints.h
  9. named_platform_channel_pair.h
  10. named_platform_channel_pair_win.cc
  11. platform_channel_pair.cc
  12. platform_channel_pair.h
  13. platform_channel_pair_posix.cc
  14. platform_channel_pair_posix_unittest.cc
  15. platform_channel_pair_win.cc
  16. platform_channel_utils_posix.cc
  17. platform_channel_utils_posix.h
  18. platform_handle.cc
  19. platform_handle.h
  20. platform_handle_utils.h
  21. platform_handle_utils_posix.cc
  22. platform_handle_utils_win.cc
  23. platform_handle_vector.h
  24. platform_shared_buffer.cc
  25. platform_shared_buffer.h
  26. platform_shared_buffer_unittest.cc
  27. process_delegate.h
  28. README.md
  29. scoped_ipc_support.cc
  30. scoped_ipc_support.h
  31. scoped_platform_handle.h
  32. test_embedder.cc
  33. test_embedder.h
mojo/edk/embedder/README.md

Mojo Embedder API

The Mojo Embedder API is an unstable, internal API to the Mojo system implementation. It should be used by code running on top of the system-level APIs to set up the Mojo environment (instead of directly instantiating things from src/mojo/edk/system).

Example uses: Mojo shell, to set up the Mojo environment for Mojo apps; Chromium code, to set up the Mojo IPC system for use between processes. Note that most code should use the Mojo Public API (under src/mojo/public) instead. The Embedder API should only be used to initialize the environment, set up the initial MessagePipe between two processes, etc.