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

Side by Side Diff: services/android/intent_receiver.mojom

Issue 1061313003: Introduce intent manager. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 5 years, 8 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
« no previous file with comments | « services/android/BUILD.gn ('k') | shell/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 [JavaPackage="org.chromium.mojo.intent"]
6 module intent_receiver;
7
8 // Service to interact with android intents.
9 interface IntentReceiverManager {
10 // This method takes an |IntentReceiver| and returns a serialized intent.
11 // The serialized intent can be deserialized using an android parcel. The
12 // caller can then transform this intent into a PendingIntent using
13 // |PendingIntent#getService| and send it to another android application.
14 // Whenever the pending intent is executed, the receiver will be called with
15 // the content of the received intent. To be noted: this will fail if the
16 // received intent is active (contains either a Binder or a file descriptor).
17 RegisterReceiver(IntentReceiver receiver) => (array<uint8> intent);
18 };
19
20 // Receiver interface, to be used with
21 // |IntentReceiverManager.RegisterReceiver|.
22 interface IntentReceiver {
23 OnIntent(array<uint8> intent);
24 };
OLDNEW
« no previous file with comments | « services/android/BUILD.gn ('k') | shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698