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

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

Issue 1590723003: Host-side implementation of ARC Intent handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review 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
Index: components/arc/common/intent.mojom
diff --git a/components/arc/common/video.mojom b/components/arc/common/intent.mojom
similarity index 53%
copy from components/arc/common/video.mojom
copy to components/arc/common/intent.mojom
index b21a1dbc4a62a3951bcf45f2441c67f1adde745b..d8ae21e208b0d01351e6f9fa2f5065d08c9ea0c7 100644
--- a/components/arc/common/video.mojom
+++ b/components/arc/common/intent.mojom
@@ -4,12 +4,11 @@
module arc;
-interface VideoHost {
- // Notifies Chrome a request for ipc channel of video acceleration.
- OnRequestArcVideoAcceleratorChannel() => (handle channel_handle);
+interface IntentHelperHost {
Luis Héctor Chávez 2016/01/15 17:26:47 Also document the purpose of this interface. Now
Yusuke Sato 2016/01/16 00:11:07 Done.
+ OnOpenUrl@0(string url);
hidehiko 2016/01/15 09:04:55 Could you document what this does?
Yusuke Sato 2016/01/16 00:11:07 Done.
};
-interface VideoInstance {
+interface IntentHelperInstance {
// Establishes full-duplex communication with the host.
- Init(VideoHost host_ptr);
+ Init@0(IntentHelperHost host_ptr);
};

Powered by Google App Engine
This is Rietveld 408576698