| OLD | NEW |
| 1 #if 0 |
| 2 TODO(noel): git rm this file: but the bots won't apply that if we have a |
| 3 dependent patch (and we do) that also has changes in this file. #if def |
| 4 out here so we can apply both issues on the try bots. |
| 5 |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 6 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 7 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 8 // found in the LICENSE file. |
| 4 | 9 |
| 5 // Multiply-included message file, so no include guard. | 10 // Multiply-included message file, so no include guard. |
| 6 | 11 |
| 7 #include <string> | 12 #include <string> |
| 8 | 13 |
| 9 #include "extensions/common/update_manifest.h" | 14 #include "extensions/common/update_manifest.h" |
| 10 #include "ipc/ipc_message_macros.h" | 15 #include "ipc/ipc_message_macros.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 44 |
| 40 // Reply when the utility process has succeeded in parsing an update manifest | 45 // Reply when the utility process has succeeded in parsing an update manifest |
| 41 // xml document. | 46 // xml document. |
| 42 IPC_MESSAGE_CONTROL1(ExtensionUtilityHostMsg_ParseUpdateManifest_Succeeded, | 47 IPC_MESSAGE_CONTROL1(ExtensionUtilityHostMsg_ParseUpdateManifest_Succeeded, |
| 43 UpdateManifest::Results /* updates */) | 48 UpdateManifest::Results /* updates */) |
| 44 | 49 |
| 45 // Reply when an error occurred parsing the update manifest. |error_message| | 50 // Reply when an error occurred parsing the update manifest. |error_message| |
| 46 // is a description of what went wrong suitable for logging. | 51 // is a description of what went wrong suitable for logging. |
| 47 IPC_MESSAGE_CONTROL1(ExtensionUtilityHostMsg_ParseUpdateManifest_Failed, | 52 IPC_MESSAGE_CONTROL1(ExtensionUtilityHostMsg_ParseUpdateManifest_Failed, |
| 48 std::string /* error_message, if any */) | 53 std::string /* error_message, if any */) |
| 54 #endif |
| OLD | NEW |