OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "services/video_capture/device_client_media_to_mojo_adapter.h" | 5 #include "services/video_capture/device_client_media_to_mojo_mock_adapter.h" |
6 | 6 |
7 namespace video_capture { | 7 namespace video_capture { |
8 | 8 |
9 DeviceClientMediaToMojoAdapter::DeviceClientMediaToMojoAdapter( | 9 DeviceClientMediaToMojoMockAdapter::DeviceClientMediaToMojoMockAdapter( |
10 std::unique_ptr<media::VideoCaptureDevice::Client> client) | 10 std::unique_ptr<media::VideoCaptureDevice::Client> client) |
11 : client_(std::move(client)) {} | 11 : client_(std::move(client)) {} |
12 | 12 |
13 DeviceClientMediaToMojoAdapter::~DeviceClientMediaToMojoAdapter() = default; | 13 DeviceClientMediaToMojoMockAdapter::~DeviceClientMediaToMojoMockAdapter() = |
| 14 default; |
14 | 15 |
15 } // namespace video_capture | 16 } // namespace video_capture |
OLD | NEW |