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

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

Issue 2393483002: Revert of VideoCapture: migrate VideoCapture renderer-->host messages to mojo, part 1 (Closed)
Patch Set: 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
« no previous file with comments | « content/common/media/video_capture_messages.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
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 };
OLDNEW
« no previous file with comments | « content/common/media/video_capture_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698