• Home
  • History
  • Annotate
  • only in /external/libmojo/mojo/edk/embedder/
NameDateSize

..29-Aug-20174 KiB

BUILD.gn29-Aug-20173.3 KiB

configuration.h29-Aug-20172.5 KiB

embedder.cc29-Aug-20175.1 KiB

embedder.h29-Aug-20178.3 KiB

embedder_internal.h29-Aug-20171 KiB

embedder_unittest.cc29-Aug-201719.8 KiB

entrypoints.cc29-Aug-201712.2 KiB

entrypoints.h29-Aug-2017696

platform_channel_pair.cc29-Aug-2017818

platform_channel_pair.h29-Aug-20174.1 KiB

platform_channel_pair_posix.cc29-Aug-20174.8 KiB

platform_channel_pair_posix_unittest.cc29-Aug-20179.2 KiB

platform_channel_pair_win.cc29-Aug-20174.6 KiB

platform_channel_utils_posix.cc29-Aug-20176.5 KiB

platform_channel_utils_posix.h29-Aug-20173.4 KiB

platform_handle.cc29-Aug-20172.3 KiB

platform_handle.h29-Aug-20172.4 KiB

platform_handle_utils.h29-Aug-20171.1 KiB

platform_handle_utils_posix.cc29-Aug-2017657

platform_handle_utils_win.cc29-Aug-2017866

platform_handle_vector.h29-Aug-20171.1 KiB

platform_shared_buffer.cc29-Aug-20179 KiB

platform_shared_buffer.h29-Aug-20176.5 KiB

process_delegate.h29-Aug-2017801

README.md29-Aug-2017645

scoped_platform_handle.h29-Aug-20171.7 KiB

test_embedder.cc29-Aug-20171 KiB

test_embedder.h29-Aug-2017978

README.md

1Mojo Embedder API
2=================
3
4The Mojo Embedder API is an unstable, internal API to the Mojo system
5implementation. It should be used by code running on top of the system-level
6APIs to set up the Mojo environment (instead of directly instantiating things
7from src/mojo/edk/system).
8
9Example uses: Mojo shell, to set up the Mojo environment for Mojo apps; Chromium
10code, to set up the Mojo IPC system for use between processes. Note that most
11code should use the Mojo Public API (under src/mojo/public) instead. The
12Embedder API should only be used to initialize the environment, set up the
13initial MessagePipe between two processes, etc.
14