Searched refs:stop_cb (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/media/base/ |
D | pipeline_unittest.cc | 46 ACTION_P2(Stop, pipeline, stop_cb) { in ACTION_P2() argument 47 pipeline->Stop(stop_cb); in ACTION_P2() 819 base::Closure stop_cb = base::Bind( in SetInitializeExpectations() local 825 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 851 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 902 base::Closure stop_cb = base::Bind( in SetSeekExpectations() local 908 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetSeekExpectations() 935 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetSeekExpectations()
|
D | pipeline.cc | 97 void Pipeline::Stop(const base::Closure& stop_cb) { in Stop() argument 101 base::Bind(&Pipeline::StopTask, weak_factory_.GetWeakPtr(), stop_cb)); in Stop() 499 void Pipeline::StopTask(const base::Closure& stop_cb) { in StopTask() argument 510 stop_cb.Run(); in StopTask() 515 stop_cb_ = stop_cb; in StopTask()
|
D | pipeline.h | 118 void Stop(const base::Closure& stop_cb); 227 void StopTask(const base::Closure& stop_cb);
|
/external/chromium_org/content/renderer/media/android/ |
D | media_source_delegate.h | 97 void Stop(const base::Closure& stop_cb); 144 void StopDemuxer(const base::Closure& stop_cb);
|
D | media_source_delegate.cc | 84 void MediaSourceDelegate::Stop(const base::Closure& stop_cb) { in Stop() argument 106 &MediaSourceDelegate::StopDemuxer, base::Unretained(this), stop_cb)); in Stop() 123 void MediaSourceDelegate::StopDemuxer(const base::Closure& stop_cb) { in StopDemuxer() argument 146 stop_cb.Run(); in StopDemuxer()
|