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

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

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

Powered by Google App Engine
This is Rietveld 408576698