Chromium Code Reviews| 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 | |
|
Ken Rockot(use gerrit already)
2016/10/04 23:35:36
So actually, conventionally we've been using the m
mcasas
2016/10/05 18:32:59
Yeah, totally my bad. I misunderstood the
migratio
| |
| 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 Stop(int32 device_id); | |
|
miu
2016/10/05 07:49:29
In the Mojo world, we're supposed to stop using ID
mcasas
2016/10/05 18:33:00
I do agree, and in fact starting migrating the who
| |
| 13 | |
| 14 // Pauses the video capture specified by |device_id|. | |
| 15 Pause(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 |