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

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: rockot@ comments (plenty of renaming) 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 VideoCaptureHost {
8 // TODO(mcasas): Migrate the rest of the messages, https://crbug.com/651897.
9
10 // Closes the video capture specified by |device_id|.
11 Stop(int32 device_id);
12
13 // Pauses the video capture specified by |device_id|.
14 Pause(int32 device_id);
15
16 // Requests that the video capturer send a frame "soon" (e.g., to resolve
17 // picture loss or quality issues).
18 RequestRefreshFrame(int32 device_id);
19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698