OLD | NEW |
(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 #include "content/browser/media/video_capture_device_info.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 VideoCaptureDeviceInfo::VideoCaptureDeviceInfo( |
| 10 media::VideoCaptureDeviceDescriptor descriptor) |
| 11 : descriptor(descriptor) {} |
| 12 |
| 13 VideoCaptureDeviceInfo::~VideoCaptureDeviceInfo() = default; |
| 14 VideoCaptureDeviceInfo::VideoCaptureDeviceInfo( |
| 15 const VideoCaptureDeviceInfo& other) = default; |
| 16 VideoCaptureDeviceInfo& VideoCaptureDeviceInfo::operator=( |
| 17 const VideoCaptureDeviceInfo& other) = default; |
| 18 |
| 19 } // namespace content |
OLD | NEW |