Searched refs:stop_cb (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/media/base/ |
D | pipeline_unittest.cc | 49 ACTION_P2(Stop, pipeline, stop_cb) { in ACTION_P2() argument 50 pipeline->Stop(stop_cb); in ACTION_P2() 1013 base::Closure stop_cb = base::Bind( in SetInitializeExpectations() local 1019 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 1042 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 1062 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 1124 base::Closure stop_cb = base::Bind( in SetSeekExpectations() local 1130 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), RunClosure<0>())); in SetSeekExpectations() 1146 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), RunClosure<0>())); in SetSeekExpectations() 1162 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetSeekExpectations() [all …]
|
D | pipeline.h | 121 void Stop(const base::Closure& stop_cb); 277 void StopTask(const base::Closure& stop_cb);
|
D | pipeline.cc | 88 void Pipeline::Stop(const base::Closure& stop_cb) { in Stop() argument 91 &Pipeline::StopTask, base::Unretained(this), stop_cb)); in Stop() 770 void Pipeline::StopTask(const base::Closure& stop_cb) { in StopTask() argument 775 stop_cb.Run(); in StopTask() 779 stop_cb_ = stop_cb; in StopTask()
|