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

Side by Side Diff: chrome/common/extensions/api/generated_messages.h.tmpl

Issue 9359040: WIP IDL-IPC2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Checkpoint before going back to returning ListValue via ExtensionMsg_Response. Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) $year The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This file is generated. Don't edit it. The source is here:
6 //
7 // chrome/common/extensions/api/generated_messages.h.tmpl
8
9 // IPC messages for extensions.
10 // Multiply-included message file, hence no include guard.
11
12 \#include "ipc/ipc_message_macros.h"
13
14 \#define IPC_MESSAGE_START ExtensionAPIMsgStart
15
16 #for $family in $families
17 #for $function in $family.functions
18 // ${function.class_name}
19 IPC_MESSAGE_ROUTED#echo len(function.arguments) + 1#(ExtensionAPIHostMsg_${funct ion.class_name},
20 int /* request_id */#for $argument in $function.arguments#,
21 $argument.mapped_type() /* $argument.name.lower */#end for#) ;
22 IPC_MESSAGE_ROUTED2(ExtensionAPIViewMsg_${function.class_name}Response,
23 int /* request_id */,
24 int /* TEMP plain integer response */);
25
26 #end for
27 #end for
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/generated.json ('k') | chrome/common/extensions/docs/js/api_page_generator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698