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(service_url) | 40 IPC_STRUCT_TRAITS_MEMBER(service_url) |
41 IPC_STRUCT_TRAITS_MEMBER(action) | 41 IPC_STRUCT_TRAITS_MEMBER(action) |
42 IPC_STRUCT_TRAITS_MEMBER(type) | 42 IPC_STRUCT_TRAITS_MEMBER(type) |
43 IPC_STRUCT_TRAITS_MEMBER(title) | 43 IPC_STRUCT_TRAITS_MEMBER(title) |
44 IPC_STRUCT_TRAITS_MEMBER(disposition) | 44 IPC_STRUCT_TRAITS_MEMBER(disposition) |
(...skipping 16 matching lines...) Expand all Loading... |
61 | 61 |
62 // Route the startActivity Intents call from a page to the service picker. | 62 // Route the startActivity Intents call from a page to the service picker. |
63 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, | 63 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, |
64 webkit_glue::WebIntentData, | 64 webkit_glue::WebIntentData, |
65 int /* intent ID */) | 65 int /* intent ID */) |
66 | 66 |
67 // Register a new service for Intents with the given action and type filter. | 67 // Register a new service for Intents with the given action and type filter. |
68 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService, | 68 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService, |
69 webkit_glue::WebIntentServiceData, | 69 webkit_glue::WebIntentServiceData, |
70 bool /* user_gesture */) | 70 bool /* user_gesture */) |
OLD | NEW |