Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: components/history/content/browser/download_database_helper.cc

Issue 2703883003: Read and restore persisted slice info (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/history/content/browser/download_database_helper.h"
6
7 namespace history {
8
9 std::vector<content::DownloadItem::ReceivedSlice> ToContentReceivedSlices(
10 const std::vector<DownloadSliceInfo>& info) {
11 std::vector<content::DownloadItem::ReceivedSlice> result;
12 for (const auto& slice_info : info) {
13 result.push_back(content::DownloadItem::ReceivedSlice(
14 slice_info.offset, slice_info.received_bytes));
15 }
16 return result;
17 }
18
19 } // namespace history
OLDNEW
« no previous file with comments | « components/history/content/browser/download_database_helper.h ('k') | content/browser/download/download_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698