Home | History | Annotate | only in /external/chromium_org/mojo/embedder
Up to higher level directory
NameDateSize
BUILD.gn05-Aug-20151.9K
channel_init.cc05-Aug-20151.7K
channel_init.h05-Aug-20151.9K
DEPS05-Aug-2015257
embedder.cc05-Aug-20158.1K
embedder.h05-Aug-20156.2K
embedder_unittest.cc05-Aug-201522.2K
platform_channel_pair.cc05-Aug-2015796
platform_channel_pair.h05-Aug-20153.6K
platform_channel_pair_posix.cc05-Aug-20154.1K
platform_channel_pair_posix_unittest.cc05-Aug-20158.9K
platform_channel_pair_win.cc05-Aug-20154.3K
platform_channel_utils_posix.cc05-Aug-20156.2K
platform_channel_utils_posix.h05-Aug-20153.5K
platform_handle.cc05-Aug-2015856
platform_handle.h05-Aug-20151.1K
platform_handle_utils.h05-Aug-20151.1K
platform_handle_utils_posix.cc05-Aug-2015659
platform_handle_utils_win.cc05-Aug-2015906
platform_handle_vector.h05-Aug-20151.1K
platform_shared_buffer.h05-Aug-20153.9K
platform_support.h05-Aug-20151.1K
PRESUBMIT.py05-Aug-2015656
README.md05-Aug-2015641
scoped_platform_handle.h05-Aug-20151.6K
simple_platform_shared_buffer.cc05-Aug-20152.8K
simple_platform_shared_buffer.h05-Aug-20153.4K
simple_platform_shared_buffer_posix.cc05-Aug-20155K
simple_platform_shared_buffer_unittest.cc05-Aug-20156.4K
simple_platform_shared_buffer_win.cc05-Aug-20153.2K
simple_platform_support.cc05-Aug-2015758
simple_platform_support.h05-Aug-20151.3K
test_embedder.cc05-Aug-20151.5K
test_embedder.h05-Aug-20151,018

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/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