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

Unified Diff: sky/services/intents/intents.mojom

Issue 1187583002: Add the ability for Sky content to trigger Android intents (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/services/intents/intents.mojom
diff --git a/mojo/public/interfaces/network/network_error.mojom b/sky/services/intents/intents.mojom
similarity index 57%
copy from mojo/public/interfaces/network/network_error.mojom
copy to sky/services/intents/intents.mojom
index 95b6cd17ff17463de88b92fb30ed19f1d6a89be7..94de12b041f9797961896b14e0773b8b25541168 100644
--- a/mojo/public/interfaces/network/network_error.mojom
+++ b/sky/services/intents/intents.mojom
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module mojo;
+module intents;
-struct NetworkError {
- int32 code;
- string? description;
+struct Intent {
eseidel 2015/06/12 20:15:19 Should this be AndroidIntent?
+ string action;
+ string url;
};
-
+interface ActivityManager {
+ startActivity(Intent intent);
+};
« no previous file with comments | « sky/services/intents/BUILD.gn ('k') | sky/services/intents/src/org/domokit/intents/ActivityManagerImpl.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698