| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Multiply-included message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 // is the parsed manifest.json file. | 102 // is the parsed manifest.json file. |
| 103 // The unpacker should also have written out files containing the decoded | 103 // The unpacker should also have written out files containing the decoded |
| 104 // images and message catalogs from the extension. See ExtensionUnpacker for | 104 // images and message catalogs from the extension. See ExtensionUnpacker for |
| 105 // details. | 105 // details. |
| 106 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackExtension_Succeeded, | 106 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackExtension_Succeeded, |
| 107 DictionaryValue /* manifest */) | 107 DictionaryValue /* manifest */) |
| 108 | 108 |
| 109 // Reply when the utility process has failed while unpacking an extension. | 109 // Reply when the utility process has failed while unpacking an extension. |
| 110 // |error_message| is a user-displayable explanation of what went wrong. | 110 // |error_message| is a user-displayable explanation of what went wrong. |
| 111 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackExtension_Failed, | 111 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackExtension_Failed, |
| 112 std::string /* error_message, if any */) | 112 string16 /* error_message, if any */) |
| 113 | 113 |
| 114 // Reply when the utility process is done unpacking and parsing JSON data | 114 // Reply when the utility process is done unpacking and parsing JSON data |
| 115 // from a web resource. | 115 // from a web resource. |
| 116 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Succeeded, | 116 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Succeeded, |
| 117 DictionaryValue /* json data */) | 117 DictionaryValue /* json data */) |
| 118 | 118 |
| 119 // Reply when the utility process has failed while unpacking and parsing a | 119 // Reply when the utility process has failed while unpacking and parsing a |
| 120 // web resource. |error_message| is a user-readable explanation of what | 120 // web resource. |error_message| is a user-readable explanation of what |
| 121 // went wrong. | 121 // went wrong. |
| 122 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Failed, | 122 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_UnpackWebResource_Failed, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // Reply when the utility process has succeeded in obtaining the printer | 162 // Reply when the utility process has succeeded in obtaining the printer |
| 163 // capabilities and defaults. | 163 // capabilities and defaults. |
| 164 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Succeeded, | 164 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Succeeded, |
| 165 std::string /* printer name */, | 165 std::string /* printer name */, |
| 166 printing::PrinterCapsAndDefaults) | 166 printing::PrinterCapsAndDefaults) |
| 167 | 167 |
| 168 // Reply when the utility process has failed to obtain the printer | 168 // Reply when the utility process has failed to obtain the printer |
| 169 // capabilities and defaults. | 169 // capabilities and defaults. |
| 170 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Failed, | 170 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Failed, |
| 171 std::string /* printer name */) | 171 std::string /* printer name */) |
| OLD | NEW |