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

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

Issue 11339014: Move content\browser\renderer_host\media to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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/renderer/media/media_stream_dependency_factory_unittest.cc
===================================================================
--- content/renderer/media/media_stream_dependency_factory_unittest.cc (revision 164646)
+++ content/renderer/media/media_stream_dependency_factory_unittest.cc (working copy)
@@ -60,7 +60,7 @@
video ? static_cast<size_t>(1) : 0);
if (audio) {
- media_stream::StreamDeviceInfo info;
+ StreamDeviceInfo info;
info.stream_type = content::MEDIA_DEVICE_AUDIO_CAPTURE;
info.name = "audio";
info.session_id = 99;
@@ -71,7 +71,7 @@
new MediaStreamSourceExtraData(info));
}
if (video) {
- media_stream::StreamDeviceInfo info;
+ StreamDeviceInfo info;
info.stream_type = content::MEDIA_DEVICE_VIDEO_CAPTURE;
info.name = "video";
info.session_id = 98;

Powered by Google App Engine
This is Rietveld 408576698