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

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

Issue 1641353003: GpuArcVideoService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arc-4-owen-ArcGpuVideoDecodeAccelerator
Patch Set: addressed Owen's comments Created 4 years, 9 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/video.mojom
diff --git a/components/arc/common/video.mojom b/components/arc/common/video.mojom
index b21a1dbc4a62a3951bcf45f2441c67f1adde745b..c61f4f138f5447fe2296e263cda9657d83a1a949 100644
--- a/components/arc/common/video.mojom
+++ b/components/arc/common/video.mojom
@@ -5,8 +5,13 @@
module arc;
interface VideoHost {
- // Notifies Chrome a request for ipc channel of video acceleration.
- OnRequestArcVideoAcceleratorChannel() => (handle channel_handle);
+ // Requests an ipc channel from Chrome to be used in the video accelerator.
+ // |pid| is the id of mojo child process.
+ // Replys |channel_handle| of mojo initial message pipe and |token| for
Luis Héctor Chávez 2016/03/16 19:07:55 nit: s/Replys/Replies with/
kcwu 2016/03/17 08:07:44 Done.
+ // creating the client end of VideoAcceleratorService message pipe.
+ // Replys invalid handle and empty token if any failure.
+ OnRequestArcVideoAcceleratorChannel(uint32 pid) => (handle channel_handle,
+ string token);
};
interface VideoInstance {

Powered by Google App Engine
This is Rietveld 408576698