Home | History | Annotate | only in /external/libmojo/mojo/edk/embedder
Up to higher level directory
NameDateSize
BUILD.gn06-Dec-20173.3K
configuration.h06-Dec-20172.5K
embedder.cc06-Dec-20175.1K
embedder.h06-Dec-20178.3K
embedder_internal.h06-Dec-20171K
embedder_unittest.cc06-Dec-201719.8K
entrypoints.cc06-Dec-201712.2K
entrypoints.h06-Dec-2017696
platform_channel_pair.cc06-Dec-2017818
platform_channel_pair.h06-Dec-20174.1K
platform_channel_pair_posix.cc06-Dec-20174.8K
platform_channel_pair_posix_unittest.cc06-Dec-20179.2K
platform_channel_pair_win.cc06-Dec-20174.6K
platform_channel_utils_posix.cc06-Dec-20176.5K
platform_channel_utils_posix.h06-Dec-20173.4K
platform_handle.cc06-Dec-20172.3K
platform_handle.h06-Dec-20172.4K
platform_handle_utils.h06-Dec-20171.1K
platform_handle_utils_posix.cc06-Dec-2017657
platform_handle_utils_win.cc06-Dec-2017866
platform_handle_vector.h06-Dec-20171.1K
platform_shared_buffer.cc06-Dec-20179K
platform_shared_buffer.h06-Dec-20176.5K
process_delegate.h06-Dec-2017801
README.md06-Dec-2017645
scoped_platform_handle.h06-Dec-20171.7K
test_embedder.cc06-Dec-20171K
test_embedder.h06-Dec-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