blob: 1224e7539ba186e3f52470576a8e05a8fd9b04c9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/media/web_media_element_source_utils.h"
#include "third_party/WebKit/public/platform/WebMediaPlayerSource.h"
#include "third_party/WebKit/public/platform/WebMediaStream.h"
#include "third_party/WebKit/public/web/WebMediaStreamRegistry.h"
namespace content {
blink::WebMediaStream GetWebMediaStreamFromWebMediaPlayerSource(
const blink::WebMediaPlayerSource& source) {
if (source.IsMediaStream())
return source.GetAsMediaStream();
if (source.IsURL()) {
return blink::WebMediaStreamRegistry::LookupMediaStreamDescriptor(
source.GetAsURL());
}
return blink::WebMediaStream();
}
} // namespace content