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

Unified Diff: components/autofill/core/common/form_field_data.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/autofill/core/common/form_field_data.cc
diff --git a/components/autofill/core/common/form_field_data.cc b/components/autofill/core/common/form_field_data.cc
index 9d3bc9388b8ac49c659a40c949c25e2d0e67ac73..bd29ad68656e55f53b488e4560ae3482a6024373 100644
--- a/components/autofill/core/common/form_field_data.cc
+++ b/components/autofill/core/common/form_field_data.cc
@@ -90,6 +90,8 @@ FormFieldData::FormFieldData()
text_direction(base::i18n::UNKNOWN_DIRECTION) {
}
+FormFieldData::FormFieldData(const FormFieldData& other) = default;
+
FormFieldData::~FormFieldData() {
}

Powered by Google App Engine
This is Rietveld 408576698