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

Side by Side Diff: components/offline_pages/core/downloads/download_ui_item.cc

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 years 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/offline_pages/downloads/download_ui_item.h" 5 #include "components/offline_pages/core/downloads/download_ui_item.h"
6 6
7 #include "components/offline_pages/background/save_page_request.h" 7 #include "components/offline_pages/core/background/save_page_request.h"
8 #include "components/offline_pages/offline_page_item.h" 8 #include "components/offline_pages/core/offline_page_item.h"
9 9
10 namespace offline_pages { 10 namespace offline_pages {
11 11
12 DownloadUIItem::DownloadUIItem() 12 DownloadUIItem::DownloadUIItem() : total_bytes(0) {}
13 : total_bytes(0) {
14 }
15 13
16 DownloadUIItem::DownloadUIItem(const OfflinePageItem& page) 14 DownloadUIItem::DownloadUIItem(const OfflinePageItem& page)
17 : guid(page.client_id.id), 15 : guid(page.client_id.id),
18 url(page.url), 16 url(page.url),
19 title(page.title), 17 title(page.title),
20 target_path(page.file_path), 18 target_path(page.file_path),
21 start_time(page.creation_time), 19 start_time(page.creation_time),
22 total_bytes(page.file_size) {} 20 total_bytes(page.file_size) {}
23 21
24 DownloadUIItem::DownloadUIItem(const SavePageRequest& request) 22 DownloadUIItem::DownloadUIItem(const SavePageRequest& request)
25 : guid(request.client_id().id), 23 : guid(request.client_id().id),
26 url(request.url()), 24 url(request.url()),
27 start_time(request.creation_time()), 25 start_time(request.creation_time()),
28 total_bytes(-1L) {} 26 total_bytes(-1L) {}
29 27
30 DownloadUIItem::DownloadUIItem(const DownloadUIItem& other) 28 DownloadUIItem::DownloadUIItem(const DownloadUIItem& other)
31 : guid(other.guid), 29 : guid(other.guid),
32 url(other.url), 30 url(other.url),
33 title(other.title), 31 title(other.title),
34 target_path(other.target_path), 32 target_path(other.target_path),
35 start_time(other.start_time), 33 start_time(other.start_time),
36 total_bytes(other.total_bytes) {} 34 total_bytes(other.total_bytes) {}
37 35
38 DownloadUIItem::~DownloadUIItem() { 36 DownloadUIItem::~DownloadUIItem() {}
39 }
40 37
41 } // namespace offline_pages 38 } // namespace offline_pages
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698