summaryrefslogtreecommitdiffstats
path: root/mojo/runner/child_process.mojom
blob: ece1e6783115865e2fd3f1329cca1a7f0648fb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module mojo.runner;

import "mojo/application/public/interfaces/application.mojom";

interface ChildController {
  // Starts the app.
  StartApp(mojo.Application& application_request) => (int32 result);

  // Exits the child process now (with no cleanup), with the given exit code.
  ExitNow(int32 exit_code);
};