| Index: chrome/common/chrome_utility_messages.h
|
| diff --git a/chrome/common/chrome_utility_messages.h b/chrome/common/chrome_utility_messages.h
|
| index 99af34bc5d0bdded6fd179289f3f82d93e354495..4bc2f0a985c1b93e7aff5bc25cf52bb2a04ac5bd 100644
|
| --- a/chrome/common/chrome_utility_messages.h
|
| +++ b/chrome/common/chrome_utility_messages.h
|
| @@ -144,17 +144,17 @@ IPC_STRUCT_END()
|
| // and place the output in |output_file|. The patch should use the bsdiff
|
| // algorithm (Courgette's version).
|
| IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_PatchFileBsdiff,
|
| - base::FilePath /* input_file */,
|
| - base::FilePath /* patch_file */,
|
| - base::FilePath /* output_file */)
|
| + IPC::PlatformFileForTransit /* input_file */,
|
| + IPC::PlatformFileForTransit /* patch_file */,
|
| + IPC::PlatformFileForTransit /* output_file */)
|
|
|
| // Tell the utility process to patch the given |input_file| using |patch_file|
|
| // and place the output in |output_file|. The patch should use the Courgette
|
| // algorithm.
|
| IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_PatchFileCourgette,
|
| - base::FilePath /* input_file */,
|
| - base::FilePath /* patch_file */,
|
| - base::FilePath /* output_file */)
|
| + IPC::PlatformFileForTransit /* input_file */,
|
| + IPC::PlatformFileForTransit /* patch_file */,
|
| + IPC::PlatformFileForTransit /* output_file */)
|
|
|
| #if defined(OS_CHROMEOS)
|
| // Tell the utility process to create a zip file on the given list of files.
|
|
|