| Index: base/android/java/src/org/chromium/base/process_launcher/ChildProcessConstants.java
|
| diff --git a/base/android/java/src/org/chromium/base/process_launcher/ChildProcessConstants.java b/base/android/java/src/org/chromium/base/process_launcher/ChildProcessConstants.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f984442ba31695f66046932e965eb9abae459060
|
| --- /dev/null
|
| +++ b/base/android/java/src/org/chromium/base/process_launcher/ChildProcessConstants.java
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2017 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.
|
| +
|
| +package org.chromium.base.process_launcher;
|
| +
|
| +/**
|
| + * Constants used as names for the items placed in the Bundle passed in the
|
| + * IChildProcessService.setupConnection call, once the connection has been established by child
|
| + * processes.
|
| + */
|
| +public interface ChildProcessConstants {
|
| + // Key for the command line.
|
| + public static final String EXTRA_COMMAND_LINE =
|
| + "org.chromium.base.process_launcher.command_line";
|
| +
|
| + // Key for the file descriptors that should be mapped in the child process.
|
| + public static final String EXTRA_FILES = "org.chromium.base.process_launcher.files";
|
| +}
|
|
|