Searched refs:stop_cb (Results 1 – 3 of 3) 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() 925 base::Closure stop_cb = base::Bind( in SetInitializeExpectations() local 931 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 954 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 974 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetInitializeExpectations() 1035 base::Closure stop_cb = base::Bind( in SetSeekExpectations() local 1043 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), RunClosure<0>())); in SetSeekExpectations() 1059 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetSeekExpectations() 1076 .WillOnce(DoAll(Stop(pipeline_.get(), stop_cb), in SetSeekExpectations()
|
D | pipeline.h | 123 void Stop(const base::Closure& stop_cb); 246 void StopTask(const base::Closure& stop_cb);
|
D | pipeline.cc | 100 void Pipeline::Stop(const base::Closure& stop_cb) { in Stop() argument 103 &Pipeline::StopTask, base::Unretained(this), stop_cb)); in Stop() 664 void Pipeline::StopTask(const base::Closure& stop_cb) { in StopTask() argument 669 stop_cb.Run(); in StopTask() 673 stop_cb_ = stop_cb; in StopTask()
|