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

Side by Side Diff: content/browser/renderer_host/media/mojo_service_launched_video_capture_device.cc

Issue 2848973002: [Mojo Video Capture] Implement a VideoCaptureProvider using the Mojo service (part 1) (Closed)
Patch Set: Created 3 years, 7 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 2017 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 #include "content/browser/renderer_host/media/mojo_service_launched_video_captur e_device.h"
6
7 namespace content {
8
9 MojoServiceLaunchedVideoCaptureDevice::MojoServiceLaunchedVideoCaptureDevice(
10 video_capture::mojom::DevicePtr device)
11 : device_(std::move(device)) {}
12
13 MojoServiceLaunchedVideoCaptureDevice::
14 ~MojoServiceLaunchedVideoCaptureDevice() {}
15
16 void MojoServiceLaunchedVideoCaptureDevice::GetPhotoCapabilities(
17 media::VideoCaptureDevice::GetPhotoCapabilitiesCallback callback) const {
18 NOTIMPLEMENTED();
19 }
20
21 void MojoServiceLaunchedVideoCaptureDevice::SetPhotoOptions(
22 media::mojom::PhotoSettingsPtr settings,
23 media::VideoCaptureDevice::SetPhotoOptionsCallback callback) {
24 NOTIMPLEMENTED();
25 }
26
27 void MojoServiceLaunchedVideoCaptureDevice::TakePhoto(
28 media::VideoCaptureDevice::TakePhotoCallback callback) {
29 NOTIMPLEMENTED();
30 }
31
32 void MojoServiceLaunchedVideoCaptureDevice::MaybeSuspendDevice() {
33 NOTIMPLEMENTED();
34 }
35
36 void MojoServiceLaunchedVideoCaptureDevice::ResumeDevice() {
37 NOTIMPLEMENTED();
38 }
39
40 void MojoServiceLaunchedVideoCaptureDevice::RequestRefreshFrame() {
41 NOTIMPLEMENTED();
42 }
43
44 void MojoServiceLaunchedVideoCaptureDevice::SetDesktopCaptureWindowIdAsync(
45 gfx::NativeViewId window_id,
46 base::OnceClosure done_cb) {
47 NOTIMPLEMENTED();
48 }
49
50 void MojoServiceLaunchedVideoCaptureDevice::OnUtilizationReport(
51 int frame_feedback_id,
52 double utilization) {
53 NOTIMPLEMENTED();
54 }
55
56 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698