OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/history/core/browser/download_row.h" | 5 #include "components/history/core/browser/download_row.h" |
6 | 6 |
7 #include "components/history/core/browser/download_constants.h" | 7 #include "components/history/core/browser/download_constants.h" |
8 | 8 |
9 namespace history { | 9 namespace history { |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 received_bytes(received), | 51 received_bytes(received), |
52 total_bytes(total), | 52 total_bytes(total), |
53 state(download_state), | 53 state(download_state), |
54 danger_type(danger_type), | 54 danger_type(danger_type), |
55 interrupt_reason(interrupt_reason), | 55 interrupt_reason(interrupt_reason), |
56 id(id), | 56 id(id), |
57 opened(download_opened), | 57 opened(download_opened), |
58 by_ext_id(ext_id), | 58 by_ext_id(ext_id), |
59 by_ext_name(ext_name) {} | 59 by_ext_name(ext_name) {} |
60 | 60 |
| 61 DownloadRow::DownloadRow(const DownloadRow& other) = default; |
| 62 |
61 DownloadRow::~DownloadRow() { | 63 DownloadRow::~DownloadRow() { |
62 } | 64 } |
63 | 65 |
64 } // namespace history | 66 } // namespace history |
OLD | NEW |