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

Unified Diff: components/autofill/core/common/password_form_fill_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/password_form_fill_data.cc
diff --git a/components/autofill/core/common/password_form_fill_data.cc b/components/autofill/core/common/password_form_fill_data.cc
index fd04bf724df63ec1a34b659a664d0ecdabcb18ab..3ffa1811600ea63eb414424a52931ed2f0339413 100644
--- a/components/autofill/core/common/password_form_fill_data.cc
+++ b/components/autofill/core/common/password_form_fill_data.cc
@@ -26,6 +26,9 @@ PasswordFormFillData::PasswordFormFillData()
is_possible_change_password_form(false) {
}
+PasswordFormFillData::PasswordFormFillData(const PasswordFormFillData& other) =
+ default;
+
PasswordFormFillData::~PasswordFormFillData() {
}

Powered by Google App Engine
This is Rietveld 408576698