Index: components/arc/common/video.mojom |
diff --git a/components/arc/common/video.mojom b/components/arc/common/video.mojom |
index b21a1dbc4a62a3951bcf45f2441c67f1adde745b..deb9dec773ff60229cbcce1de4f90211247ddc87 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. |
+ // Replies with |channel_handle| of mojo initial message pipe and |token| for |
+ // 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 { |