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

Unified Diff: components/arc/common/intent_helper.mojom

Issue 1590723003: Host-side implementation of ARC Intent handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Support new GURL interface at https://chromium.googlesource.com/chromium/src/+/dfbcc3b7926990bbf523… Created 4 years, 11 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
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/intent_helper/arc_intent_helper_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/intent_helper.mojom
diff --git a/components/arc/common/intent_helper.mojom b/components/arc/common/intent_helper.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..3984b98b97237679008f9c266982a26862f9a701
--- /dev/null
+++ b/components/arc/common/intent_helper.mojom
@@ -0,0 +1,19 @@
+// Copyright 2016 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.
+
+module arc;
+
+// Handles intents from ARC in Chrome.
+interface IntentHelperHost {
+ // Opens the url with Chrome for Chrome OS.
+ OnOpenUrl@0(string url);
+};
+
+// Sends intents to ARC on behalf of Chrome.
+interface IntentHelperInstance {
+ // Establishes full-duplex communication with the host.
+ Init@0(IntentHelperHost host_ptr);
+
+ // TODO(yusukes): Merge settings.mojom into intent_helper.mojom.
+};
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/intent_helper/arc_intent_helper_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698