| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/runner/host/child_process.h" | 5 #include "mojo/runner/host/child_process.h" |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 7 #include <utility> | 9 #include <utility> |
| 8 | 10 |
| 9 #include "base/base_switches.h" | 11 #include "base/base_switches.h" |
| 10 #include "base/bind.h" | 12 #include "base/bind.h" |
| 11 #include "base/callback_helpers.h" | 13 #include "base/callback_helpers.h" |
| 12 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 13 #include "base/debug/stack_trace.h" | 15 #include "base/debug/stack_trace.h" |
| 14 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 15 #include "base/i18n/icu_util.h" | 17 #include "base/i18n/icu_util.h" |
| 16 #include "base/location.h" | 18 #include "base/location.h" |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 // This will block, then run whatever the controller wants. | 392 // This will block, then run whatever the controller wants. |
| 391 blocker.Block(); | 393 blocker.Block(); |
| 392 | 394 |
| 393 app_context.Shutdown(); | 395 app_context.Shutdown(); |
| 394 | 396 |
| 395 return 0; | 397 return 0; |
| 396 } | 398 } |
| 397 | 399 |
| 398 } // namespace runner | 400 } // namespace runner |
| 399 } // namespace mojo | 401 } // namespace mojo |
| OLD | NEW |