Home | History | Annotate | only in /external/chromium_org/mojo/embedder
Up to higher level directory
NameDateSize
BUILD.gn23-Apr-20151.9K
channel_init.cc23-Apr-20151.7K
channel_init.h23-Apr-20151.9K
DEPS23-Apr-2015257
embedder.cc23-Apr-20158.1K
embedder.h23-Apr-20156.2K
embedder_unittest.cc23-Apr-201522.2K
platform_channel_pair.cc23-Apr-2015796
platform_channel_pair.h23-Apr-20153.6K
platform_channel_pair_posix.cc23-Apr-20154.1K
platform_channel_pair_posix_unittest.cc23-Apr-20158.9K
platform_channel_pair_win.cc23-Apr-20154.3K
platform_channel_utils_posix.cc23-Apr-20156.2K
platform_channel_utils_posix.h23-Apr-20153.5K
platform_handle.cc23-Apr-2015856
platform_handle.h23-Apr-20151.1K
platform_handle_utils.h23-Apr-20151.1K
platform_handle_utils_posix.cc23-Apr-2015659
platform_handle_utils_win.cc23-Apr-2015906
platform_handle_vector.h23-Apr-20151.1K
platform_shared_buffer.h23-Apr-20153.9K
platform_support.h23-Apr-20151.1K
PRESUBMIT.py23-Apr-2015656
README.md23-Apr-2015641
scoped_platform_handle.h23-Apr-20151.6K
simple_platform_shared_buffer.cc23-Apr-20152.8K
simple_platform_shared_buffer.h23-Apr-20153.4K
simple_platform_shared_buffer_posix.cc23-Apr-20155K
simple_platform_shared_buffer_unittest.cc23-Apr-20156.4K
simple_platform_shared_buffer_win.cc23-Apr-20153.2K
simple_platform_support.cc23-Apr-2015758
simple_platform_support.h23-Apr-20151.3K
test_embedder.cc23-Apr-20151.5K
test_embedder.h23-Apr-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