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

Side by Side Diff: components/history/core/browser/download_row.cc

Issue 1728033002: components: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698