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

Unified Diff: chrome/common/chrome_utility_messages.h

Issue 61643015: Adds imageWriterPrivate support for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorganization and test updates. Created 7 years, 1 month 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 7a748bc45de47d7072bfe688b6db98af6a0a3091..b78bc16dbb032f4e8a39308eb7ab627f02998444 100644
--- a/chrome/common/chrome_utility_messages.h
+++ b/chrome/common/chrome_utility_messages.h
@@ -221,6 +221,15 @@ IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_CheckMediaFile,
IPC::PlatformFileForTransit /* Media file to parse */)
#endif // !defined(OS_ANDROID) && !defined(OS_IOS)
+
+IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_ImageWriter_Write,
jam 2013/11/21 19:36:41 ipc files have specific owners form the security t
Drew Haven 2013/11/26 02:10:43 Will do.
+ base::FilePath /* source file */,
+ base::FilePath /* target file */)
+IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_ImageWriter_Verify,
+ base::FilePath /* source file */,
+ base::FilePath /* target file */)
+IPC_MESSAGE_CONTROL0(ChromeUtilityMsg_ImageWriter_Cancel)
+
//------------------------------------------------------------------------------
// Utility process host messages:
// These are messages from the utility process to the browser.
@@ -359,3 +368,9 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_IndexPicasaAlbumsContents_Finished,
IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_CheckMediaFile_Finished,
bool /* passed_checks */)
#endif // !defined(OS_ANDROID) && !defined(OS_IOS)
+
+IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_ImageWriter_Succeeded)
+IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Failed,
+ std::string /* message */)
+IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress,
+ int /* progress percent */)

Powered by Google App Engine
This is Rietveld 408576698