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

Unified Diff: components/translate/core/common/language_detection_details.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 side-by-side diff with in-line comments
Download patch
Index: components/translate/core/common/language_detection_details.cc
diff --git a/components/translate/core/common/language_detection_details.cc b/components/translate/core/common/language_detection_details.cc
index 128b3451885c0b057b13d6f506ac07c31a03eeea..5fd1b7b4794cfc0772a3c5a5b351127d83d56073 100644
--- a/components/translate/core/common/language_detection_details.cc
+++ b/components/translate/core/common/language_detection_details.cc
@@ -10,6 +10,9 @@ LanguageDetectionDetails::LanguageDetectionDetails()
: is_cld_reliable(false), has_notranslate(false) {
}
+LanguageDetectionDetails::LanguageDetectionDetails(
+ const LanguageDetectionDetails& other) = default;
+
LanguageDetectionDetails::~LanguageDetectionDetails() {}
} // namespace translate

Powered by Google App Engine
This is Rietveld 408576698