| OLD | NEW |
| 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 ChildProcessConstants { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // Key for the file descriptors that should be mapped in the child process.. | 30 // Key for the file descriptors that should be mapped in the child process.. |
| 31 public static final String EXTRA_FILES = "com.google.android.apps.chrome.ext
ra.extraFiles"; | 31 public static final String EXTRA_FILES = "com.google.android.apps.chrome.ext
ra.extraFiles"; |
| 32 | 32 |
| 33 // Key for the number of CPU cores. | 33 // Key for the number of CPU cores. |
| 34 public static final String EXTRA_CPU_COUNT = "com.google.android.apps.chrome
.extra.cpu_count"; | 34 public static final String EXTRA_CPU_COUNT = "com.google.android.apps.chrome
.extra.cpu_count"; |
| 35 | 35 |
| 36 // Key for the CPU features mask. | 36 // Key for the CPU features mask. |
| 37 public static final String EXTRA_CPU_FEATURES = | 37 public static final String EXTRA_CPU_FEATURES = |
| 38 "com.google.android.apps.chrome.extra.cpu_features"; | 38 "com.google.android.apps.chrome.extra.cpu_features"; |
| 39 public static final String EXTRA_BIND_TO_CALLER = |
| 40 "com.google.android.apps.chrome.extra.bind_to_caller"; |
| 39 } | 41 } |
| OLD | NEW |