tree: 623240dd9957c9988ff3d26dfe938b7b41889b02 [path history] [tgz]
  1. configuration.h
  2. embedder.cc
  3. embedder.h
  4. embedder_internal.h
  5. embedder_unittest.cc
  6. entrypoints.cc
  7. platform_channel_pair.cc
  8. platform_channel_pair.h
  9. platform_channel_pair_posix.cc
  10. platform_channel_pair_posix_unittest.cc
  11. platform_channel_utils_posix.cc
  12. platform_channel_utils_posix.h
  13. platform_handle.cc
  14. platform_handle.h
  15. platform_handle_utils.h
  16. platform_handle_utils_posix.cc
  17. platform_handle_vector.h
  18. platform_shared_buffer.h
  19. platform_support.h
  20. process_delegate.h
  21. README.md
  22. scoped_platform_handle.h
  23. simple_platform_shared_buffer.cc
  24. simple_platform_shared_buffer.h
  25. simple_platform_shared_buffer_android.cc
  26. simple_platform_shared_buffer_posix.cc
  27. simple_platform_shared_buffer_unittest.cc
  28. simple_platform_support.cc
  29. simple_platform_support.h
  30. test_embedder.cc
  31. 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.