Home | History | Annotate | only in /external/libmojo/mojo/edk/embedder
Up to higher level directory
NameDateSize
BUILD.gn05-Oct-20173.3K
configuration.h05-Oct-20172.5K
embedder.cc05-Oct-20175.1K
embedder.h05-Oct-20178.3K
embedder_internal.h05-Oct-20171K
embedder_unittest.cc05-Oct-201719.8K
entrypoints.cc05-Oct-201712.2K
entrypoints.h05-Oct-2017696
platform_channel_pair.cc05-Oct-2017818
platform_channel_pair.h05-Oct-20174.1K
platform_channel_pair_posix.cc05-Oct-20174.8K
platform_channel_pair_posix_unittest.cc05-Oct-20179.2K
platform_channel_pair_win.cc05-Oct-20174.6K
platform_channel_utils_posix.cc05-Oct-20176.5K
platform_channel_utils_posix.h05-Oct-20173.4K
platform_handle.cc05-Oct-20172.3K
platform_handle.h05-Oct-20172.4K
platform_handle_utils.h05-Oct-20171.1K
platform_handle_utils_posix.cc05-Oct-2017657
platform_handle_utils_win.cc05-Oct-2017866
platform_handle_vector.h05-Oct-20171.1K
platform_shared_buffer.cc05-Oct-20179K
platform_shared_buffer.h05-Oct-20176.5K
process_delegate.h05-Oct-2017801
README.md05-Oct-2017645
scoped_platform_handle.h05-Oct-20171.7K
test_embedder.cc05-Oct-20171K
test_embedder.h05-Oct-2017978

README.md

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