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

Unified Diff: chrome/common/chrome_utility_messages.h

Issue 2632143002: Convert utility process out-of-process file patching IPC to mojo (Closed)
Patch Set: Reupload to sync to tip. Try landing again. Created 3 years, 11 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
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/file_patcher.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_utility_messages.h
diff --git a/chrome/common/chrome_utility_messages.h b/chrome/common/chrome_utility_messages.h
index 4bc2f0a985c1b93e7aff5bc25cf52bb2a04ac5bd..3473e6b496599cd23ee0f39dcc7a4891230eaac0 100644
--- a/chrome/common/chrome_utility_messages.h
+++ b/chrome/common/chrome_utility_messages.h
@@ -140,22 +140,6 @@ IPC_STRUCT_END()
// Utility process messages:
// These are messages from the browser to the utility process.
-// 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 bsdiff
-// algorithm (Courgette's version).
-IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_PatchFileBsdiff,
- 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,
- 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.
IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_CreateZipFile,
@@ -209,9 +193,6 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_GetSaveFileName,
IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Failed,
std::string /* error_message, if any */)
-// Reply when a file has been patched.
-IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_PatchFile_Finished, int /* result */)
-
#if defined(OS_CHROMEOS)
// Reply when the utility process has succeeded in creating the zip file.
IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_CreateZipFile_Succeeded)
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/file_patcher.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698