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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/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: content/public/android/java/src/org/chromium/content/browser/ChildProcessConstants.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ChildProcessConstants.java b/content/public/android/java/src/org/chromium/content/browser/ChildProcessConstants.java
deleted file mode 100644
index 87683428e8cc16af352a2732605abb20cd32fcc1..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/ChildProcessConstants.java
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2015 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.content.browser;
-
-/**
- * Constants to be used by child processes.
- */
-public interface ChildProcessConstants {
- // Below are the names for the items placed in the bind or start command intent.
- // Note that because that intent maybe reused if a service is restarted, none should be process
- // specific.
-
- // Key in the binding Intent's Bundle for the ChromiumLinkerParams.
- public static final String EXTRA_LINKER_PARAMS =
- "com.google.android.apps.chrome.extra.linker_params";
- public static final String EXTRA_BIND_TO_CALLER =
- "com.google.android.apps.chrome.extra.bind_to_caller";
-
- // Below are the names for the items placed in the Bundle passed in the
- // IChildProcessService.setupConnection call, once the connection has been established.
-
- // Key for the command line.
- public static final String EXTRA_COMMAND_LINE =
- "com.google.android.apps.chrome.extra.command_line";
-
- // Key for the file descriptors that should be mapped in the child process..
- public static final String EXTRA_FILES = "com.google.android.apps.chrome.extra.extraFiles";
-
- // Key for the number of CPU cores.
- public static final String EXTRA_CPU_COUNT = "com.google.android.apps.chrome.extra.cpu_count";
-
- // Key for the CPU features mask.
- public static final String EXTRA_CPU_FEATURES =
- "com.google.android.apps.chrome.extra.cpu_features";
-}

Powered by Google App Engine
This is Rietveld 408576698