Chromium Code Reviews| 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 |