tree: 142adbb8f9388823726be4ff6cf2b41afd124f5e [path history] [tgz]
  1. BUILD.gn
  2. channel_info_forward.h
  3. configuration.h
  4. embedder.cc
  5. embedder.h
  6. embedder_internal.h
  7. embedder_unittest.cc
  8. entrypoints.cc
  9. master_process_delegate.h
  10. platform_channel_pair.cc
  11. platform_channel_pair.h
  12. platform_channel_pair_posix.cc
  13. platform_channel_pair_posix_unittest.cc
  14. platform_channel_pair_win.cc
  15. platform_channel_utils_posix.cc
  16. platform_channel_utils_posix.h
  17. platform_handle.cc
  18. platform_handle.h
  19. platform_handle_utils.h
  20. platform_handle_utils_posix.cc
  21. platform_handle_utils_win.cc
  22. platform_handle_vector.h
  23. platform_shared_buffer.h
  24. platform_support.h
  25. process_delegate.h
  26. process_type.h
  27. README.md
  28. scoped_platform_handle.h
  29. simple_platform_shared_buffer.cc
  30. simple_platform_shared_buffer.h
  31. simple_platform_shared_buffer_android.cc
  32. simple_platform_shared_buffer_posix.cc
  33. simple_platform_shared_buffer_unittest.cc
  34. simple_platform_shared_buffer_win.cc
  35. simple_platform_support.cc
  36. simple_platform_support.h
  37. slave_info.h
  38. slave_process_delegate.h
  39. system_impl_private_entrypoints.cc
  40. test_embedder.cc
  41. 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.