OLD | NEW |
---|---|
(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 }; | |
OLD | NEW |