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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/ChildProcessConstants.java

Issue 2795913003: [Merge m58] android: Limit bindToCaller check to webview (Closed)
Patch Set: remove final from chrome 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 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 ChildProcessConstants {
(...skipping 18 matching lines...) Expand all
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698