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

Unified Diff: content/browser/media_devices_monitor.cc

Issue 54863002: Implement a salt for MediaSource IDs that can be cleared by a user. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments- unit tests still don't compile Created 7 years, 2 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/media_devices_monitor.cc
diff --git a/content/browser/media_devices_monitor.cc b/content/browser/media_devices_monitor.cc
index 72c3b4b1cefcc1b7c9a4180d63abe780212cde5d..43c8fc8374bb57abb882543b9fb95273cb2a8e2c 100644
--- a/content/browser/media_devices_monitor.cc
+++ b/content/browser/media_devices_monitor.cc
@@ -13,7 +13,7 @@ namespace {
void EnsureMonitorCaptureDevicesInternal(
MediaStreamManager* media_stream_manager) {
media_stream_manager->EnumerateDevices(
- NULL, -1, -1, -1, MEDIA_DEVICE_AUDIO_CAPTURE, GURL());
+ NULL, -1, -1, NULL, -1, MEDIA_DEVICE_AUDIO_CAPTURE, GURL());
Jói 2013/10/31 17:19:35 Does this need to be fixed or is NULL OK?
perkj_chrome 2013/11/01 13:39:34 Null is ok. This is an ugly way of starting an enu
}
}

Powered by Google App Engine
This is Rietveld 408576698