Index: content/renderer/media/video_destination_handler.cc |
diff --git a/content/renderer/media/video_destination_handler.cc b/content/renderer/media/video_destination_handler.cc |
index 7438c495f3a348f97891895bd53849e9ee5e82fd..692efeff86fbd79b2920f34af93312c5a3226dd4 100644 |
--- a/content/renderer/media/video_destination_handler.cc |
+++ b/content/renderer/media/video_destination_handler.cc |
@@ -168,12 +168,12 @@ bool VideoDestinationHandler::Open( |
factory = RenderThreadImpl::current()->GetMediaStreamDependencyFactory(); |
DCHECK(factory != NULL); |
} |
- WebKit::WebMediaStream stream; |
+ blink::WebMediaStream stream; |
if (registry) { |
stream = registry->GetMediaStream(url); |
} else { |
stream = |
- WebKit::WebMediaStreamRegistry::lookupMediaStreamDescriptor(GURL(url)); |
+ blink::WebMediaStreamRegistry::lookupMediaStreamDescriptor(GURL(url)); |
} |
if (stream.isNull() || !stream.extraData()) { |
LOG(ERROR) << "VideoDestinationHandler::Open - invalid url: " << url; |