| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |