| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include <stdio.h> | |
| 6 #include <string.h> | |
| 7 | |
| 8 #include <iostream> | |
| 9 | |
| 10 #include "base/base_switches.h" | |
| 11 #include "base/bind.h" | |
| 12 #include "base/command_line.h" | |
| 13 #include "base/debug/stack_trace.h" | |
| 14 #include "base/files/file_util.h" | |
| 15 #include "base/i18n/icu_util.h" | |
| 16 #include "base/message_loop/message_loop.h" | |
| 17 #include "base/path_service.h" | |
| 18 #include "base/synchronization/waitable_event.h" | |
| 19 #include "base/threading/platform_thread.h" | |
| 20 #include "mojo/shell/standalone/context.h" | |
| 21 #include "mojo/shell/switches.h" | |
| 22 | |
| 23 namespace mojo { | |
| 24 namespace shell { | |
| 25 | |
| 26 int LauncherProcessMain() { | |
| 27 #if !defined(OFFICIAL_BUILD) | |
| 28 base::debug::EnableInProcessStackDumping(); | |
| 29 #endif | |
| 30 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | |
| 31 // http://crbug.com/546644 | |
| 32 command_line->AppendSwitch(switches::kNoSandbox); | |
| 33 | |
| 34 base::PlatformThread::SetName("mojo_runner"); | |
| 35 | |
| 36 // We want the Context to outlive the MessageLoop so that pipes are all | |
| 37 // gracefully closed / error-out before we try to shut the Context down. | |
| 38 Context shell_context; | |
| 39 { | |
| 40 base::MessageLoop message_loop; | |
| 41 CHECK(base::i18n::InitializeICU()); | |
| 42 shell_context.Init(nullptr); | |
| 43 | |
| 44 message_loop.PostTask( | |
| 45 FROM_HERE, | |
| 46 base::Bind(&Context::RunCommandLineApplication, | |
| 47 base::Unretained(&shell_context))); | |
| 48 | |
| 49 message_loop.Run(); | |
| 50 | |
| 51 // Must be called before |message_loop| is destroyed. | |
| 52 shell_context.Shutdown(); | |
| 53 } | |
| 54 | |
| 55 return 0; | |
| 56 } | |
| 57 | |
| 58 } // namespace shell | |
| 59 } // namespace mojo | |
| OLD | NEW |