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

Unified 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 side-by-side diff with in-line comments
Download patch
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.
+};

Powered by Google App Engine
This is Rietveld 408576698