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 // Message definition file, included multiple times, hence no include guard. | 5 // Message definition file, included multiple times, hence no include guard. |
6 | 6 |
7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
8 #include "ipc/ipc_message_utils.h" | 8 #include "ipc/ipc_message_utils.h" |
9 #include "ipc/param_traits_macros.h" | 9 #include "ipc/param_traits_macros.h" |
10 #include "webkit/glue/web_intent_data.h" | 10 #include "webkit/glue/web_intent_data.h" |
(...skipping 28 matching lines...) Expand all Loading... | |
39 IPC_ENUM_TRAITS(IntentsMsg_WebIntentReply_Type::Value) | 39 IPC_ENUM_TRAITS(IntentsMsg_WebIntentReply_Type::Value) |
40 | 40 |
41 IPC_MESSAGE_ROUTED2(IntentsMsg_SetWebIntentData, | 41 IPC_MESSAGE_ROUTED2(IntentsMsg_SetWebIntentData, |
42 webkit_glue::WebIntentData, | 42 webkit_glue::WebIntentData, |
43 int /* intent ID */) | 43 int /* intent ID */) |
44 | 44 |
45 IPC_MESSAGE_ROUTED3(IntentsMsg_WebIntentReply, | 45 IPC_MESSAGE_ROUTED3(IntentsMsg_WebIntentReply, |
46 IntentsMsg_WebIntentReply_Type::Value /* reply type */, | 46 IntentsMsg_WebIntentReply_Type::Value /* reply type */, |
47 string16 /* payload data */, | 47 string16 /* payload data */, |
48 int /* intent ID */) | 48 int /* intent ID */) |
49 | |
50 // Route the startActivity Intents call from a page to the service picker. | |
51 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, | |
Greg Billock
2011/09/20 18:20:33
Reminder: Have a look here and changed the signatu
| |
52 webkit_glue::WebIntentData, | |
53 int /* intent ID */) | |
OLD | NEW |