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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc

Issue 1731483003: chrome: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc b/chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc
index 785f9a0ecb0d78ad954990b47b0fc55a0f788a8a..bfc46f4aef571630f69b9cdafec0f46c31e0f640 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc
+++ b/chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc
@@ -45,6 +45,8 @@ SyncTaskManager::PendingTask::PendingTask(
const base::Closure& task, Priority pri, int seq)
: task(task), priority(pri), seq(seq) {}
+SyncTaskManager::PendingTask::PendingTask(const PendingTask& other) = default;
+
SyncTaskManager::PendingTask::~PendingTask() {}
bool SyncTaskManager::PendingTaskComparator::operator()(

Powered by Google App Engine
This is Rietveld 408576698