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

Unified Diff: content/browser/android/child_process_launcher.h

Issue 12321131: Renamed Sandboxed process to Child process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaesed and removed stub SandboxedProcessService Created 7 years, 9 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/browser/android/child_process_launcher.h
diff --git a/content/browser/android/sandboxed_process_launcher.h b/content/browser/android/child_process_launcher.h
similarity index 78%
rename from content/browser/android/sandboxed_process_launcher.h
rename to content/browser/android/child_process_launcher.h
index 64deaac7132c2bdf03ce6ed1435d3f4843525a62..a78991d30d036e55a4de68714085f774b9095a48 100644
--- a/content/browser/android/sandboxed_process_launcher.h
+++ b/content/browser/android/child_process_launcher.h
@@ -15,23 +15,23 @@
namespace content {
-typedef base::Callback<void(base::ProcessHandle)> StartSandboxedProcessCallback;
+typedef base::Callback<void(base::ProcessHandle)> StartChildProcessCallback;
// Starts a process as a sandboxed process spawned by the Android
Yaron 2013/03/08 03:10:31 update comment
kjyoun 2013/03/11 14:17:43 Done.
// ActivityManager.
// The created process handle is returned to the |callback| on success, 0 is
// retuned if the process could not be created.
-void StartSandboxedProcess(
+void StartChildProcess(
const CommandLine::StringVector& argv,
const std::vector<FileDescriptorInfo>& files_to_register,
- const StartSandboxedProcessCallback& callback);
+ const StartChildProcessCallback& callback);
// Stops a sandboxed process based on the handle returned form
Yaron 2013/03/08 03:10:31 update comment
kjyoun 2013/03/11 14:17:43 Done.
-// StartSandboxedProcess.
-void StopSandboxedProcess(base::ProcessHandle handle);
+// StartChildProcess.
+void StopChildProcess(base::ProcessHandle handle);
// Registers JNI methods, this must be called before any other methods in this
Yaron 2013/03/08 03:10:31 Can you remove this comment while you're here? It'
kjyoun 2013/03/11 14:17:43 Done.
// file.
-bool RegisterSandboxedProcessLauncher(JNIEnv* env);
+bool RegisterChildProcessLauncher(JNIEnv* env);
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698