Chromium Code Reviews| Index: device/video/video_capture_device_client_impl.cc |
| diff --git a/device/video/video_capture_device_client_impl.cc b/device/video/video_capture_device_client_impl.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..124a6e90b2223b701e52c40194f6a0e6731d62c7 |
| --- /dev/null |
| +++ b/device/video/video_capture_device_client_impl.cc |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "base/logging.h" |
| +#include "device/video/video_capture_device_client_impl.h" |
| + |
| +namespace device { |
| + |
| +void VideoCaptureDeviceClientImpl::OnFrameAvailable( |
| + media::mojom::VideoFramePtr frame) {} |
|
emircan
2016/08/02 22:33:49
NOTIMPLEMENTED(); here
chfremer
2016/08/03 22:14:14
Done.
|
| +void VideoCaptureDeviceClientImpl::OnError(const std::string& error) { |
| + NOTIMPLEMENTED(); |
| +} |
| + |
| +} // namespace device |