OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // Messages sent from the host to the ARC instance. | 5 // Messages sent from the host to the ARC instance. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 IPC_MESSAGE_CONTROL3(ArcInstanceMsg_RequestAppIcon, | 47 IPC_MESSAGE_CONTROL3(ArcInstanceMsg_RequestAppIcon, |
48 std::string, /* package */ | 48 std::string, /* package */ |
49 std::string, /* activity */ | 49 std::string, /* activity */ |
50 arc::ScaleFactor /* scale factor */) | 50 arc::ScaleFactor /* scale factor */) |
51 | 51 |
52 // Sends an event from Chrome notification UI to Android. | 52 // Sends an event from Chrome notification UI to Android. |
53 // |event| is a type of occured event. | 53 // |event| is a type of occured event. |
54 IPC_MESSAGE_CONTROL2(ArcInstanceMsg_SendNotificationEventToAndroid, | 54 IPC_MESSAGE_CONTROL2(ArcInstanceMsg_SendNotificationEventToAndroid, |
55 std::string /* key */, | 55 std::string /* key */, |
56 arc::ArcNotificationEvent /* event */); | 56 arc::ArcNotificationEvent /* event */); |
| 57 |
| 58 // Sends the Chrome clipboard content to Android side. |
| 59 // |data| is the clipboard data being sent. |
| 60 IPC_MESSAGE_CONTROL1(ArcInstanceMsg_SendClipboardContentToAndroid, |
| 61 arc::ClipboardData /* data */) |
OLD | NEW |