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

Side by Side Diff: components/arc/common/arc_instance_messages.h

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to catch arc++ notification cl Created 5 years 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
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698