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

Side by Side Diff: webrtc/modules/video_capture/windows/device_info_mf.cc

Issue 2534553002: Replace VideoCaptureDataCallback by VideoSinkInterface. (Closed)
Patch Set: Break overlong lines. Created 4 years 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
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/modules/video_capture/windows/device_info_mf.h" 11 #include "webrtc/modules/video_capture/windows/device_info_mf.h"
12 12
13 namespace webrtc { 13 namespace webrtc {
14 namespace videocapturemodule { 14 namespace videocapturemodule {
15 15
16 DeviceInfoMF::DeviceInfoMF(const int32_t id) : DeviceInfoImpl(id) { 16 DeviceInfoMF::DeviceInfoMF() {
17 } 17 }
18 18
19 DeviceInfoMF::~DeviceInfoMF() { 19 DeviceInfoMF::~DeviceInfoMF() {
20 } 20 }
21 21
22 int32_t DeviceInfoMF::Init() { 22 int32_t DeviceInfoMF::Init() {
23 return -1; 23 return -1;
24 } 24 }
25 25
26 uint32_t DeviceInfoMF::NumberOfDevices() { 26 uint32_t DeviceInfoMF::NumberOfDevices() {
(...skipping 15 matching lines...) Expand all
42 const char* deviceUniqueIdUTF8, 42 const char* deviceUniqueIdUTF8,
43 const char* dialogTitleUTF8, 43 const char* dialogTitleUTF8,
44 void* parentWindow, 44 void* parentWindow,
45 uint32_t positionX, 45 uint32_t positionX,
46 uint32_t positionY) { 46 uint32_t positionY) {
47 return -1; 47 return -1;
48 } 48 }
49 49
50 } // namespace videocapturemodule 50 } // namespace videocapturemodule
51 } // namespace webrtc 51 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_capture/windows/device_info_mf.h ('k') | webrtc/modules/video_capture/windows/sink_filter_ds.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698