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

Side by Side Diff: content/common/video_capture.mojom

Issue 2390103002: Reland: VideoCapture: migrate VideoCapture renderer-->host messages to mojo, part 1 (Closed)
Patch Set: Renamed StopCapture and PauseCapture to Stop and Pause Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698