| 15 | #include <Windows.h> |
| 16 | |
| 17 | int WINAPI wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) { |
| 18 | sandbox::SandboxInterfaceInfo sandbox_info = {0}; |
| 19 | content::InitializeSandboxInfo(&sandbox_info); |
| 20 | thrust_shell::MainDelegate delegate; |
| 21 | |
| 22 | content::ContentMainParams params(&delegate); |
| 23 | params.instance = instance; |
| 24 | params.sandbox_info = &sandbox_info; |
| 25 | return content::ContentMain(params); |
| 26 | } |
| 27 | |
| 28 | // defined(OS_WIN) |
| 29 | #elif defined(OS_LINUX) |
nothing calls this directly
no outgoing calls
no test coverage detected