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

Unified Diff: content/renderer/media/user_media_client_impl.cc

Issue 1918173002: Add support for device-change notifications to MediaStreamDispatcher and MediaStreamDispatcherHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hta comments Created 4 years, 8 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/renderer/media/user_media_client_impl.cc
diff --git a/content/renderer/media/user_media_client_impl.cc b/content/renderer/media/user_media_client_impl.cc
index 62dca219828b9e88036beea4d0dbb26b5003caf6..10c87a09b8481dedfa61183952ac77dedf914ce4 100644
--- a/content/renderer/media/user_media_client_impl.cc
+++ b/content/renderer/media/user_media_client_impl.cc
@@ -770,6 +770,11 @@ void UserMediaClientImpl::OnDeviceOpenFailed(int request_id) {
NOTIMPLEMENTED();
}
+void UserMediaClientImpl::OnDevicesChanged() {
+ DVLOG(1) << "UserMediaClientImpl::OnDevicesChanged()";
+ NOTIMPLEMENTED();
+}
+
void UserMediaClientImpl::GetUserMediaRequestSucceeded(
const blink::WebMediaStream& stream,
blink::WebUserMediaRequest request_info) {

Powered by Google App Engine
This is Rietveld 408576698