Chromium Code Reviews| Index: chrome/browser/extensions/api/messaging/native_process_launcher.h |
| diff --git a/chrome/browser/extensions/api/messaging/native_process_launcher.h b/chrome/browser/extensions/api/messaging/native_process_launcher.h |
| index db4130946119f56057e86f57f11bd4d1e846817d..c99d37bdb26676ad61922d51404044c84c534d7e 100644 |
| --- a/chrome/browser/extensions/api/messaging/native_process_launcher.h |
| +++ b/chrome/browser/extensions/api/messaging/native_process_launcher.h |
| @@ -34,7 +34,7 @@ class NativeProcessLauncher { |
| // to false in case of a failure. Handler must take ownership of the IO |
| // handles. |
| typedef base::Callback<void(LaunchResult result, |
| - base::ProcessHandle process_handle, |
| + base::Process process, |
| base::File read_file, |
| base::File write_file)> LaunchedCallback; |
| @@ -68,7 +68,7 @@ class NativeProcessLauncher { |
| // Launches native messaging process. |
| static bool LaunchNativeProcess(const base::CommandLine& command_line, |
| - base::ProcessHandle* process_handle, |
| + base::Process* process_handle, |
|
gab
2014/11/27 13:28:44
s/process_handle/process
|
| base::File* read_file, |
| base::File* write_file); |