| Index: media/base/pipeline.cc
|
| diff --git a/media/base/pipeline.cc b/media/base/pipeline.cc
|
| index a27bfc3d4af78bb015f2e5d5e68601bb181acb8e..f6541a386b26b40cfd44b70df63a4f870ee4edd9 100644
|
| --- a/media/base/pipeline.cc
|
| +++ b/media/base/pipeline.cc
|
| @@ -249,6 +249,12 @@ void Pipeline::SetErrorForTesting(PipelineStatus status) {
|
| SetError(status);
|
| }
|
|
|
| +void Pipeline::KeyAdded() {
|
| + DCHECK(demuxer_);
|
| + if (demuxer_)
|
| + demuxer_->KeyAdded();
|
| +}
|
| +
|
| void Pipeline::SetState(State next_state) {
|
| if (state_ != kStarted && next_state == kStarted &&
|
| !creation_time_.is_null()) {
|
|
|