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

Side by Side Diff: extensions/common/extension_utility_messages.h

Issue 2699663003: Convert utility process extension ParseUpdate IPC to mojo (Closed)
Patch Set: Sync to ToT, see if git apply issue and try jobs are happy. 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « extensions/common/extension_message_generator.h ('k') | extensions/common/manifest_parser.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698