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

Side by Side Diff: content/common/intents_messages.h

Issue 11231011: Pass the mime data type with the web intent data through RPC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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(mime_data)
34 IPC_STRUCT_TRAITS_MEMBER(root_name) 35 IPC_STRUCT_TRAITS_MEMBER(root_name)
35 IPC_STRUCT_TRAITS_MEMBER(filesystem_id) 36 IPC_STRUCT_TRAITS_MEMBER(filesystem_id)
36 IPC_STRUCT_TRAITS_MEMBER(data_type) 37 IPC_STRUCT_TRAITS_MEMBER(data_type)
37 IPC_STRUCT_TRAITS_END() 38 IPC_STRUCT_TRAITS_END()
38 39
39 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebIntentReply) 40 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebIntentReply)
40 IPC_STRUCT_TRAITS_MEMBER(type) 41 IPC_STRUCT_TRAITS_MEMBER(type)
41 IPC_STRUCT_TRAITS_MEMBER(data) 42 IPC_STRUCT_TRAITS_MEMBER(data)
42 IPC_STRUCT_TRAITS_MEMBER(data_file) 43 IPC_STRUCT_TRAITS_MEMBER(data_file)
43 IPC_STRUCT_TRAITS_MEMBER(data_file_size) 44 IPC_STRUCT_TRAITS_MEMBER(data_file_size)
(...skipping 23 matching lines...) Expand all
67 68
68 // Route the startActivity Intents call from a page to the service picker. 69 // Route the startActivity Intents call from a page to the service picker.
69 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch, 70 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch,
70 webkit_glue::WebIntentData, 71 webkit_glue::WebIntentData,
71 int /* intent ID */) 72 int /* intent ID */)
72 73
73 // Register a new service for Intents with the given action and type filter. 74 // Register a new service for Intents with the given action and type filter.
74 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService, 75 IPC_MESSAGE_ROUTED2(IntentsHostMsg_RegisterIntentService,
75 webkit_glue::WebIntentServiceData, 76 webkit_glue::WebIntentServiceData,
76 bool /* user_gesture */) 77 bool /* user_gesture */)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698