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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/ContentChildProcessConstants.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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.content.browser; 5 package org.chromium.content.browser;
6 6
7 /** 7 /**
8 * Constants to be used by child processes. 8 * Constants to be used by child processes.
9 */ 9 */
10 public interface ChildProcessConstants { 10 public interface ContentChildProcessConstants {
11 // Below are the names for the items placed in the bind or start command int ent. 11 // Below are the names for the items placed in the bind or start command int ent.
12 // Note that because that intent maybe reused if a service is restarted, non e should be process 12 // Note that because that intent maybe reused if a service is restarted, non e should be process
13 // specific. 13 // specific.
14 14
15 // Key in the binding Intent's Bundle for the ChromiumLinkerParams. 15 // Key in the binding Intent's Bundle for the ChromiumLinkerParams.
16 public static final String EXTRA_LINKER_PARAMS = 16 public static final String EXTRA_LINKER_PARAMS =
17 "com.google.android.apps.chrome.extra.linker_params"; 17 "com.google.android.apps.chrome.extra.linker_params";
18 public static final String EXTRA_BIND_TO_CALLER = 18 public static final String EXTRA_BIND_TO_CALLER =
19 "com.google.android.apps.chrome.extra.bind_to_caller"; 19 "com.google.android.apps.chrome.extra.bind_to_caller";
20 20
21 // Below are the names for the items placed in the Bundle passed in the 21 // Below are the names for the items placed in the Bundle passed in the
22 // IChildProcessService.setupConnection call, once the connection has been e stablished. 22 // IChildProcessService.setupConnection call, once the connection has been e stablished.
23 23
24 // Key for the command line.
25 public static final String EXTRA_COMMAND_LINE =
26 "com.google.android.apps.chrome.extra.command_line";
27
28 // Key for the file descriptors that should be mapped in the child process..
29 public static final String EXTRA_FILES = "com.google.android.apps.chrome.ext ra.extraFiles";
30
31 // Key for the number of CPU cores. 24 // Key for the number of CPU cores.
32 public static final String EXTRA_CPU_COUNT = "com.google.android.apps.chrome .extra.cpu_count"; 25 public static final String EXTRA_CPU_COUNT = "com.google.android.apps.chrome .extra.cpu_count";
33 26
34 // Key for the CPU features mask. 27 // Key for the CPU features mask.
35 public static final String EXTRA_CPU_FEATURES = 28 public static final String EXTRA_CPU_FEATURES =
36 "com.google.android.apps.chrome.extra.cpu_features"; 29 "com.google.android.apps.chrome.extra.cpu_features";
37 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698