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

Side by Side 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, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 package org.chromium.base.process_launcher;
6
7 /**
8 * Constants used as names for the items placed in the Bundle passed in the
9 * IChildProcessService.setupConnection call, once the connection has been estab lished by child
10 * processes.
11 */
12 public interface ChildProcessConstants {
13 // Key for the command line.
14 public static final String EXTRA_COMMAND_LINE =
15 "org.chromium.base.process_launcher.command_line";
16
17 // Key for the file descriptors that should be mapped in the child process.
18 public static final String EXTRA_FILES = "org.chromium.base.process_launcher .files";
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698