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

Unified Diff: chrome/common/chrome_utility_messages.h

Issue 2705613003: Convert utility process zip creator IPC to mojo (Closed)
Patch Set: Add a comment about release references. Created 3 years, 10 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: chrome/common/chrome_utility_messages.h
diff --git a/chrome/common/chrome_utility_messages.h b/chrome/common/chrome_utility_messages.h
index 3473e6b496599cd23ee0f39dcc7a4891230eaac0..a267d4a065ce53477ea222aaa71c7c59b2434fb7 100644
--- a/chrome/common/chrome_utility_messages.h
+++ b/chrome/common/chrome_utility_messages.h
@@ -140,14 +140,6 @@ IPC_STRUCT_END()
// Utility process messages:
// These are messages from the browser to the utility process.
-#if defined(OS_CHROMEOS)
-// Tell the utility process to create a zip file on the given list of files.
-IPC_MESSAGE_CONTROL3(ChromeUtilityMsg_CreateZipFile,
- base::FilePath /* src_dir */,
- std::vector<base::FilePath> /* src_relative_paths */,
- base::FileDescriptor /* dest_fd */)
-#endif // defined(OS_CHROMEOS)
-
#if defined(FULL_SAFE_BROWSING)
// Tells the utility process to analyze a zip file for malicious download
// protection, providing a file that can be used temporarily to analyze binaries
@@ -193,14 +185,6 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_GetSaveFileName,
IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Failed,
std::string /* error_message, if any */)
-#if defined(OS_CHROMEOS)
-// Reply when the utility process has succeeded in creating the zip file.
-IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_CreateZipFile_Succeeded)
-
-// Reply when an error occured in creating the zip file.
-IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_CreateZipFile_Failed)
-#endif // defined(OS_CHROMEOS)
-
#if defined(FULL_SAFE_BROWSING)
// Reply when a zip file has been analyzed for malicious download protection.
IPC_MESSAGE_CONTROL1(

Powered by Google App Engine
This is Rietveld 408576698