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

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

Issue 1061313003: Introduce intent manager. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
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;
7
8 interface IntentReceiver {
ppi 2015/04/07 15:42:14 Could you add comments for these interfaces?
qsr 2015/04/08 10:04:13 Done.
9 OnIntent(array<uint8> intent);
10 };
11
12 interface IntentManager {
13 GetIntent(IntentReceiver receiver) => (array<uint8> intent);
ppi 2015/04/07 15:42:13 In particular, would that be a good place to docum
ppi 2015/04/07 15:42:14 I feel there's too many different meaning of "inte
qsr 2015/04/08 10:04:13 As discussed, the intent received is the one that
qsr 2015/04/08 10:04:13 Done.
14 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698