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

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper.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/browsing_data/browsing_data_file_system_helper.cc
diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
index f1ee3d85402b3f9828008d3cc5631c061aa2ab18..302dffe3efdfd9a7bff58f352a9d7cd72ded0b6b 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
@@ -144,6 +144,9 @@ void BrowsingDataFileSystemHelperImpl::DeleteFileSystemOriginInFileThread(
BrowsingDataFileSystemHelper::FileSystemInfo::FileSystemInfo(
const GURL& origin) : origin(origin) {}
+BrowsingDataFileSystemHelper::FileSystemInfo::FileSystemInfo(
+ const FileSystemInfo& other) = default;
+
BrowsingDataFileSystemHelper::FileSystemInfo::~FileSystemInfo() {}
// static

Powered by Google App Engine
This is Rietveld 408576698