| Index: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| index 7beecb9dd4be9a28665ac847fe9e6f45f67b085f..aa4be855864ba2803fc386fd307082f815bfcb58 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
|
| @@ -2353,7 +2353,7 @@ AudioTrackList& HTMLMediaElement::audioTracks()
|
|
|
| void HTMLMediaElement::audioTrackChanged(WebMediaPlayer::TrackId trackId, bool enabled)
|
| {
|
| - DVLOG(MEDIA_LOG_LEVEL) << "audioTrackChanged(" << (void*)this << ") trackId= " << trackId << " enabled=" << boolString(enabled);
|
| + DVLOG(MEDIA_LOG_LEVEL) << "audioTrackChanged(" << (void*)this << ") trackId= " << (String)trackId << " enabled=" << boolString(enabled);
|
| DCHECK(RuntimeEnabledFeatures::audioVideoTracksEnabled());
|
|
|
| audioTracks().scheduleChangeEvent();
|
| @@ -2383,7 +2383,7 @@ WebMediaPlayer::TrackId HTMLMediaElement::addAudioTrack(const WebString& id, Web
|
| << "', '" << (String)label << "', '" << (String)language << "', " << boolString(enabled) << ")";
|
|
|
| if (!RuntimeEnabledFeatures::audioVideoTracksEnabled())
|
| - return 0;
|
| + return blink::WebString();
|
|
|
| AudioTrack* audioTrack = AudioTrack::create(id, kindString, label, language, enabled);
|
| audioTracks().add(audioTrack);
|
| @@ -2409,7 +2409,7 @@ VideoTrackList& HTMLMediaElement::videoTracks()
|
|
|
| void HTMLMediaElement::selectedVideoTrackChanged(WebMediaPlayer::TrackId* selectedTrackId)
|
| {
|
| - DVLOG(MEDIA_LOG_LEVEL) << "selectedVideoTrackChanged(" << (void*)this << ") selectedTrackId=" << (selectedTrackId ? String::format("%u", *selectedTrackId) : "none");
|
| + DVLOG(MEDIA_LOG_LEVEL) << "selectedVideoTrackChanged(" << (void*)this << ") selectedTrackId=" << (selectedTrackId ? ((String)*selectedTrackId) : "none");
|
| DCHECK(RuntimeEnabledFeatures::audioVideoTracksEnabled());
|
|
|
| if (selectedTrackId)
|
| @@ -2427,7 +2427,7 @@ WebMediaPlayer::TrackId HTMLMediaElement::addVideoTrack(const WebString& id, Web
|
| << "', '" << (String)label << "', '" << (String)language << "', " << boolString(selected) << ")";
|
|
|
| if (!RuntimeEnabledFeatures::audioVideoTracksEnabled())
|
| - return 0;
|
| + return blink::WebString();
|
|
|
| // If another track was selected (potentially by the user), leave it selected.
|
| if (selected && videoTracks().selectedIndex() != -1)
|
|
|