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

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

Issue 180633008: Add different error codes for getUserMedia. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed comments Created 6 years, 9 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
« no previous file with comments | « content/public/common/media_stream_request.cc ('k') | content/renderer/media/media_stream_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_dependency_factory_unittest.cc
diff --git a/content/renderer/media/media_stream_dependency_factory_unittest.cc b/content/renderer/media/media_stream_dependency_factory_unittest.cc
index 7ed5c218fb63e4709621147761ab7b526ed92ea4..2f4c53dd587af1d7dc8ce6aec847b207c0d0cb43 100644
--- a/content/renderer/media/media_stream_dependency_factory_unittest.cc
+++ b/content/renderer/media/media_stream_dependency_factory_unittest.cc
@@ -61,7 +61,7 @@ class MediaStreamDependencyFactoryTest : public ::testing::Test {
if (audio) {
StreamDeviceInfo info;
- info.device.type = content::MEDIA_DEVICE_AUDIO_CAPTURE;
+ info.device.type = MEDIA_DEVICE_AUDIO_CAPTURE;
info.device.name = "audio";
info.session_id = 99;
audio_sources[0].initialize("audio",
@@ -74,7 +74,7 @@ class MediaStreamDependencyFactoryTest : public ::testing::Test {
}
if (video) {
StreamDeviceInfo info;
- info.device.type = content::MEDIA_DEVICE_VIDEO_CAPTURE;
+ info.device.type = MEDIA_DEVICE_VIDEO_CAPTURE;
info.device.name = "video";
info.session_id = 98;
video_sources[0].initialize("video",
« no previous file with comments | « content/public/common/media_stream_request.cc ('k') | content/renderer/media/media_stream_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698