| 1925 | } |
| 1926 | |
| 1927 | TmpWriteHandle::TmpWriteHandle( |
| 1928 | TmpFileGroup* const parent, WriteRange::WriteDoneCallback cb) |
| 1929 | : parent_(parent), |
| 1930 | cb_(move(cb)), |
| 1931 | compressed_(parent_->tmp_file_mgr_->compressed_buffer_tracker()) {} |
| 1932 | |
| 1933 | TmpWriteHandle::~TmpWriteHandle() { |
| 1934 | DCHECK(!write_in_flight_); |
nothing calls this directly
no test coverage detected