| 1649 | } |
| 1650 | |
| 1651 | StorageFileLocation DocumentData::videoPreloadLocation() const { |
| 1652 | return hasRemoteLocation() |
| 1653 | ? StorageFileLocation( |
| 1654 | _dc, |
| 1655 | session().userId(), |
| 1656 | MTP_inputDocumentFileLocation( |
| 1657 | MTP_long(id), |
| 1658 | MTP_long(_access), |
| 1659 | MTP_bytes(_fileReference), |
| 1660 | MTP_string())) |
| 1661 | : StorageFileLocation(); |
| 1662 | } |
| 1663 | |
| 1664 | auto DocumentData::createStreamingLoader( |
| 1665 | Data::FileOrigin origin, |
no test coverage detected