Returns the disk id of the temporary file.
| 88 | |
| 89 | /// Returns the disk id of the temporary file. |
| 90 | virtual int disk_id(bool is_file_op = false) const { |
| 91 | // The disk id for file operations should only be supported in TmpFileRemote. |
| 92 | DCHECK(!is_file_op); |
| 93 | return disk_id_; |
| 94 | } |
| 95 | |
| 96 | /// Returns if the temporary file is in local file system. |
| 97 | bool is_local() { return expected_local_; } |
no outgoing calls
no test coverage detected