OLD | NEW |
(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 |
OLD | NEW |