| Index: media/base/android/media_player_bridge.cc
|
| diff --git a/media/base/android/media_player_bridge.cc b/media/base/android/media_player_bridge.cc
|
| index b87e4dc7f40524a7ab741dafaa17b0d04424b3f0..deb7c537f79cd30b162b12f1eb7b286cf8ca015f 100644
|
| --- a/media/base/android/media_player_bridge.cc
|
| +++ b/media/base/android/media_player_bridge.cc
|
| @@ -34,17 +34,14 @@ namespace media {
|
| MediaPlayerAndroid* MediaPlayerAndroid::Create(
|
| int player_id,
|
| const GURL& url,
|
| - bool is_media_source,
|
| + SourceType source_type,
|
| const GURL& first_party_for_cookies,
|
| bool hide_url_log,
|
| MediaPlayerManager* manager) {
|
| - LOG_IF(WARNING, is_media_source) << "MSE is not supported";
|
| + DCHECK_EQ(source_type, SOURCE_TYPE_URL)
|
| + << "Media source other than URL is not supported.";
|
| return new MediaPlayerBridge(
|
| - player_id,
|
| - url,
|
| - first_party_for_cookies,
|
| - hide_url_log,
|
| - manager);
|
| + player_id, url, first_party_for_cookies, hide_url_log, manager);
|
| }
|
| #endif
|
|
|
|
|