Index: content/renderer/media/rtc_media_constraints.cc |
=================================================================== |
--- content/renderer/media/rtc_media_constraints.cc (revision 164646) |
+++ content/renderer/media/rtc_media_constraints.cc (working copy) |
@@ -10,6 +10,7 @@ |
#include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
+namespace content { |
namespace { |
void GetNativeMediaConstraints( |
@@ -22,8 +23,8 @@ |
new_constraint.value = constraints[i].m_value.utf8(); |
// Ignore Chrome specific Tab capture constraints. |
- if (new_constraint.key == media_stream::kMediaStreamSource || |
- new_constraint.key == media_stream::kMediaStreamSourceId) |
+ if (new_constraint.key == kMediaStreamSource || |
+ new_constraint.key == kMediaStreamSourceId) |
continue; |
DVLOG(3) << "MediaStreamConstraints:" << new_constraint.key |
<< " : " << new_constraint.value; |
@@ -33,8 +34,6 @@ |
} // namespace |
-namespace content { |
- |
RTCMediaConstraints::RTCMediaConstraints( |
const WebKit::WebMediaConstraints& constraints) { |
if (constraints.isNull()) |