1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Message definition file, included multiple times, hence no include guard.
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
#include "ipc/param_traits_macros.h"
#include "webkit/glue/web_intent_data.h"
#include "webkit/glue/web_intent_reply_data.h"
#define IPC_MESSAGE_START IntentsMsgStart
IPC_ENUM_TRAITS(webkit_glue::WebIntentReplyType)
IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebIntentData)
IPC_STRUCT_TRAITS_MEMBER(action)
IPC_STRUCT_TRAITS_MEMBER(type)
IPC_STRUCT_TRAITS_MEMBER(data)
IPC_STRUCT_TRAITS_END()
// Set the intent data to be set on the service page.
IPC_MESSAGE_ROUTED1(IntentsMsg_SetWebIntentData,
webkit_glue::WebIntentData)
// Send the service's reply to the client page.
IPC_MESSAGE_ROUTED3(IntentsMsg_WebIntentReply,
webkit_glue::WebIntentReplyType /* reply type */,
string16 /* payload data */,
int /* intent ID */)
// Notify the container that the service has replied to the client page.
IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentReply,
webkit_glue::WebIntentReplyType /* reply type */,
string16 /* payload data */)
// Route the startActivity Intents call from a page to the service picker.
IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch,
webkit_glue::WebIntentData,
int /* intent ID */)
// Register a new service for Intents with the given action and type filter.
IPC_MESSAGE_ROUTED5(IntentsHostMsg_RegisterIntentService,
string16 /* action */,
string16 /* type */,
string16 /* href */,
string16 /* title */,
string16 /* disposition */)
|