Chromium Code Reviews| Index: content/renderer/media/webmediasourceclient_impl.cc |
| diff --git a/content/renderer/media/webmediasourceclient_impl.cc b/content/renderer/media/webmediasourceclient_impl.cc |
| index 1aef77393fd1a8fd13d983d0ed3dea3730080c79..8158ef11e5039ce19b963fc657d21b58f40f17b6 100644 |
| --- a/content/renderer/media/webmediasourceclient_impl.cc |
| +++ b/content/renderer/media/webmediasourceclient_impl.cc |
| @@ -60,7 +60,7 @@ void WebMediaSourceClientImpl::setDuration(double new_duration) { |
| demuxer_->SetDuration(new_duration); |
| } |
| -void WebMediaSourceClientImpl::endOfStream( |
| +void WebMediaSourceClientImpl::markEndOfStream( |
| WebMediaSourceClient::EndOfStreamStatus status) { |
| media::PipelineStatus pipeline_status = media::PIPELINE_OK; |
| @@ -77,7 +77,12 @@ void WebMediaSourceClientImpl::endOfStream( |
| NOTIMPLEMENTED(); |
| } |
| - demuxer_->EndOfStream(pipeline_status); |
| + demuxer_->MarkEndOfStream(pipeline_status); |
| } |
| +void WebMediaSourceClientImpl::unmarkEndOfStream() { |
| + demuxer_->UnmarkEndOfStream(); |
| +} |
| + |
|
scherkus (not reviewing)
2013/07/19 20:35:47
remove extra blank
acolwell GONE FROM CHROMIUM
2013/07/19 20:45:54
Done.
|
| + |
| } // namespace content |