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

Unified Diff: content/browser/renderer_host/media/screen_capture_device.cc

Issue 15906019: Hook up EncodedVideoSource on the browser side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screencast_cl_6
Patch Set: 516738a8 IPC/struct changes, courtesy hshi@ Created 7 years, 6 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: content/browser/renderer_host/media/screen_capture_device.cc
diff --git a/content/browser/renderer_host/media/screen_capture_device.cc b/content/browser/renderer_host/media/screen_capture_device.cc
index a1da5816fb3070621714723b9c9722e833c8ce56..dd2d237b6df7121a42350862f9ecf446063599a9 100644
--- a/content/browser/renderer_host/media/screen_capture_device.cc
+++ b/content/browser/renderer_host/media/screen_capture_device.cc
@@ -368,6 +368,15 @@ void ScreenCaptureDevice::SetScreenCapturerForTest(
core_->SetScreenCapturerForTest(capturer.Pass());
}
+media::VideoEncodingCapabilities
+ScreenCaptureDevice::GetEncodingCapabilities() {
+ return media::VideoEncodingCapabilities();
+}
+
+void ScreenCaptureDevice::TryConfigureEncodedBitstream(
+ const media::RuntimeVideoEncodingParameters& params) {
+}
+
void ScreenCaptureDevice::Allocate(int width, int height,
int frame_rate,
EventHandler* event_handler) {

Powered by Google App Engine
This is Rietveld 408576698