Chromium Code Reviews| 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 "device/video/video_capture_device_client_impl.h" | |
| 6 | |
| 7 namespace device { | |
| 8 | |
| 9 void VideoCaptureDeviceClientImpl::OnFrameAvailable( | |
| 10 media::mojom::VideoFramePtr frame) {} | |
|
mcasas
2016/08/02 18:59:32
Until implemented, and to prevent some misfortunat
chfremer
2016/08/02 20:30:25
Done.
| |
| 11 void VideoCaptureDeviceClientImpl::OnError(const std::string& error) {} | |
| 12 | |
| 13 } // namespace device | |
| OLD | NEW |