Index: services/android/intent.mojom |
diff --git a/services/android/intent.mojom b/services/android/intent.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bff6da427987f7a9bbd305e87f1f3007a830e502 |
--- /dev/null |
+++ b/services/android/intent.mojom |
@@ -0,0 +1,14 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+[JavaPackage="org.chromium.mojo.intent"] |
+module intent; |
+ |
+interface IntentReceiver { |
ppi
2015/04/07 15:42:14
Could you add comments for these interfaces?
qsr
2015/04/08 10:04:13
Done.
|
+ OnIntent(array<uint8> intent); |
+}; |
+ |
+interface IntentManager { |
+ 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.
|
+}; |