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

Unified Diff: chrome/common/safe_browsing/zip_analyzer_results.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/common/safe_browsing/zip_analyzer_results.cc
diff --git a/chrome/common/safe_browsing/zip_analyzer_results.cc b/chrome/common/safe_browsing/zip_analyzer_results.cc
index f0da179cf8f8a43a57d22ff254afbd9ceb5e7a7e..ce3f9979a2f61a295bcd6f615e4fa30dfe296eba 100644
--- a/chrome/common/safe_browsing/zip_analyzer_results.cc
+++ b/chrome/common/safe_browsing/zip_analyzer_results.cc
@@ -13,6 +13,8 @@ namespace zip_analyzer {
Results::Results() : success(false), has_executable(false), has_archive(false) {
}
+Results::Results(const Results& other) = default;
+
Results::~Results() {
}

Powered by Google App Engine
This is Rietveld 408576698