OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/common/content_export.h" | 7 #include "content/common/content_export.h" |
8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
9 #include "ipc/ipc_message_utils.h" | 9 #include "ipc/ipc_message_utils.h" |
10 #include "ipc/param_traits_macros.h" | 10 #include "ipc/param_traits_macros.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 IPC_STRUCT_TRAITS_MEMBER(action) | 24 IPC_STRUCT_TRAITS_MEMBER(action) |
25 IPC_STRUCT_TRAITS_MEMBER(type) | 25 IPC_STRUCT_TRAITS_MEMBER(type) |
26 IPC_STRUCT_TRAITS_MEMBER(data) | 26 IPC_STRUCT_TRAITS_MEMBER(data) |
27 IPC_STRUCT_TRAITS_MEMBER(extra_data) | 27 IPC_STRUCT_TRAITS_MEMBER(extra_data) |
28 IPC_STRUCT_TRAITS_MEMBER(service) | 28 IPC_STRUCT_TRAITS_MEMBER(service) |
29 IPC_STRUCT_TRAITS_MEMBER(suggestions) | 29 IPC_STRUCT_TRAITS_MEMBER(suggestions) |
30 IPC_STRUCT_TRAITS_MEMBER(unserialized_data) | 30 IPC_STRUCT_TRAITS_MEMBER(unserialized_data) |
31 IPC_STRUCT_TRAITS_MEMBER(message_port_ids) | 31 IPC_STRUCT_TRAITS_MEMBER(message_port_ids) |
32 IPC_STRUCT_TRAITS_MEMBER(blob_file) | 32 IPC_STRUCT_TRAITS_MEMBER(blob_file) |
33 IPC_STRUCT_TRAITS_MEMBER(blob_length) | 33 IPC_STRUCT_TRAITS_MEMBER(blob_length) |
34 IPC_STRUCT_TRAITS_MEMBER(root_path) | 34 IPC_STRUCT_TRAITS_MEMBER(root_name) |
35 IPC_STRUCT_TRAITS_MEMBER(filesystem_id) | 35 IPC_STRUCT_TRAITS_MEMBER(filesystem_id) |
36 IPC_STRUCT_TRAITS_MEMBER(data_type) | 36 IPC_STRUCT_TRAITS_MEMBER(data_type) |
37 IPC_STRUCT_TRAITS_END() | 37 IPC_STRUCT_TRAITS_END() |
38 | 38 |
39 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebIntentServiceData) | 39 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebIntentServiceData) |
40 IPC_STRUCT_TRAITS_MEMBER(action) | 40 IPC_STRUCT_TRAITS_MEMBER(action) |
41 IPC_STRUCT_TRAITS_MEMBER(type) | 41 IPC_STRUCT_TRAITS_MEMBER(type) |
42 IPC_STRUCT_TRAITS_MEMBER(scheme) | 42 IPC_STRUCT_TRAITS_MEMBER(scheme) |
43 IPC_STRUCT_TRAITS_MEMBER(service_url) | 43 IPC_STRUCT_TRAITS_MEMBER(service_url) |
44 IPC_STRUCT_TRAITS_MEMBER(title) | 44 IPC_STRUCT_TRAITS_MEMBER(title) |
(...skipping 17 matching lines...) Expand all Loading... |
62 | 62 |
63 // Route the startActivity Intents call from a page to the service picker. | 63 // Route the startActivity Intents call from a page to the service picker. |
64 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, | 64 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, |
65 webkit_glue::WebIntentData, | 65 webkit_glue::WebIntentData, |
66 int /* intent ID */) | 66 int /* intent ID */) |
67 | 67 |
68 // Register a new service for Intents with the given action and type filter. | 68 // Register a new service for Intents with the given action and type filter. |
69 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService, | 69 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService, |
70 webkit_glue::WebIntentServiceData, | 70 webkit_glue::WebIntentServiceData, |
71 bool /* user_gesture */) | 71 bool /* user_gesture */) |
OLD | NEW |