blob: ec78f5bd5b722aaf0e969364339e265f89831c4f [file] [log] [blame]
jam63c8ff22015-04-07 07:30:00 +09001// Copyright 2015 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#ifndef MOJO_SHELL_LAUNCHER_PROCESS_H_
6#define MOJO_SHELL_LAUNCHER_PROCESS_H_
7
jam5a9ae5b2015-11-13 08:23:43 +09008#include "base/callback_forward.h"
9
10class GURL;
11
jam63c8ff22015-04-07 07:30:00 +090012namespace mojo {
ben4912cb32015-04-30 06:30:11 +090013namespace runner {
jam63c8ff22015-04-07 07:30:00 +090014
15// Main method for the launcher process.
jam5a9ae5b2015-11-13 08:23:43 +090016// See commit in main_helper.h for explanation of the parameters.
17int LauncherProcessMain(const GURL& mojo_url, const base::Closure& callback);
jam63c8ff22015-04-07 07:30:00 +090018
ben4912cb32015-04-30 06:30:11 +090019} // namespace runner
jam63c8ff22015-04-07 07:30:00 +090020} // namespace mojo
21
22#endif // MOJO_SHELL_LAUNCHER_PROCESS_H_