OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 module content.mojom; |
| 6 |
| 7 interface VideoCaptureRendererToBrowser |
| 8 { |
| 9 // TODO(mcasas): Migrate the rest of the messages, https://crbug.com/651897. |
| 10 |
| 11 // Closes the video capture specified by |device_id|. |
| 12 StopCapture(int32 device_id); |
| 13 |
| 14 // Pauses the video capture specified by |device_id|. |
| 15 PauseCapture(int32 device_id); |
| 16 |
| 17 // Requests that the video capturer send a frame "soon" (e.g., to resolve |
| 18 // picture loss or quality issues). |
| 19 RequestRefreshFrame(int32 device_id); |
| 20 }; |
OLD | NEW |