• Home
Name Date Size #Lines LOC

..--

BUILD.gnD03-May-20241.9 KiB7263

DEPSD03-May-2024257 1210

PRESUBMIT.pyD03-May-2024656 1710

README.mdD03-May-2024641 1411

channel_init.ccD03-May-20241.7 KiB5741

channel_init.hD03-May-20241.9 KiB6436

embedder.ccD03-May-20248.1 KiB241174

embedder.hD03-May-20246.2 KiB12636

embedder_unittest.ccD03-May-202422.2 KiB603444

platform_channel_pair.ccD03-May-2024796 3320

platform_channel_pair.hD03-May-20243.6 KiB9541

platform_channel_pair_posix.ccD03-May-20244.1 KiB11679

platform_channel_pair_posix_unittest.ccD03-May-20248.9 KiB256193

platform_channel_pair_win.ccD03-May-20244.3 KiB11883

platform_channel_utils_posix.ccD03-May-20246.2 KiB187134

platform_channel_utils_posix.hD03-May-20243.5 KiB7733

platform_handle.ccD03-May-2024856 4130

platform_handle.hD03-May-20241.1 KiB4831

platform_handle_utils.hD03-May-20241.1 KiB3521

platform_handle_utils_posix.ccD03-May-2024659 2311

platform_handle_utils_win.ccD03-May-2024906 3221

platform_handle_vector.hD03-May-20241.1 KiB3621

platform_shared_buffer.hD03-May-20243.9 KiB10342

platform_support.hD03-May-20241.1 KiB4124

scoped_platform_handle.hD03-May-20241.6 KiB6041

simple_platform_shared_buffer.ccD03-May-20242.8 KiB10973

simple_platform_shared_buffer.hD03-May-20243.4 KiB10360

simple_platform_shared_buffer_posix.ccD03-May-20245 KiB158107

simple_platform_shared_buffer_unittest.ccD03-May-20246.4 KiB188131

simple_platform_shared_buffer_win.ccD03-May-20243.2 KiB9661

simple_platform_support.ccD03-May-2024758 2616

simple_platform_support.hD03-May-20241.3 KiB3821

test_embedder.ccD03-May-20241.5 KiB6243

test_embedder.hD03-May-20241,018 3012

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