Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: media/capture/video/video_capture_device.cc

Issue 1952463002: Media Stream Image Capture (4): wire takePhoto and implement in FakeVCDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tommi@ and mlamouri@ comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/capture/video/video_capture_device.cc
diff --git a/media/capture/video/video_capture_device.cc b/media/capture/video/video_capture_device.cc
index f56b241c1fab5438f15c6335ddfa51b7b4537773..8ee1f9e39d2ff7462d95a53c88f6fe3695b60eee 100644
--- a/media/capture/video/video_capture_device.cc
+++ b/media/capture/video/video_capture_device.cc
@@ -141,6 +141,11 @@ VideoCaptureDevice::Client::Buffer::~Buffer() {
VideoCaptureDevice::~VideoCaptureDevice() {
}
+bool VideoCaptureDevice::TakePhoto(const TakePhotoCallback& photo_callback) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
PowerLineFrequency VideoCaptureDevice::GetPowerLineFrequencyForLocation()
const {
const std::string current_country = base::CountryCodeForCurrentTimezone();

Powered by Google App Engine
This is Rietveld 408576698