| Index: content/browser/download/parallel_download_utils.h
|
| diff --git a/content/browser/download/parallel_download_utils.h b/content/browser/download/parallel_download_utils.h
|
| index 62d732ef92e05ac17b421658a6c3355e8329266c..14fc0b437061844d9e89abbc45f957bfb07ceb41 100644
|
| --- a/content/browser/download/parallel_download_utils.h
|
| +++ b/content/browser/download/parallel_download_utils.h
|
| @@ -12,10 +12,9 @@
|
|
|
| namespace content {
|
|
|
| -// Find the first gap in an array of received slices and return it as the next
|
| -// slice to download. If not found, return a slice that is to the end of all
|
| -// slices. |received_slices| must be ordered by offsets.
|
| -CONTENT_EXPORT DownloadItem::ReceivedSlice FindNextSliceToDownload(
|
| +// Given an array of slices that are received, returns an array of slices to
|
| +// download. |received_slices| must be ordered by offsets.
|
| +CONTENT_EXPORT std::vector<DownloadItem::ReceivedSlice> FindSlicesToDownload(
|
| const std::vector<DownloadItem::ReceivedSlice>& received_slices);
|
|
|
| } // namespace content
|
|
|