Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3048)

Unified Diff: base/android/java/src/org/chromium/base/process_launcher/ChildProcessConstants.java

Issue 2845243002: Moving BindingManager and ChildProcessConnection to base/.
Patch Set: Moving BindingManager and ChildProcessConnection to base/. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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";
+}

Powered by Google App Engine
This is Rietveld 408576698