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 */) |