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

Unified Diff: components/autofill/core/browser/card_unmask_delegate.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/browser/card_unmask_delegate.cc
diff --git a/components/autofill/core/browser/card_unmask_delegate.cc b/components/autofill/core/browser/card_unmask_delegate.cc
index cb785d44689cb9b321025972c4e82a95fa573a3b..f22bbb1ce779cfe57d447991dd31b98e11e059ab 100644
--- a/components/autofill/core/browser/card_unmask_delegate.cc
+++ b/components/autofill/core/browser/card_unmask_delegate.cc
@@ -9,6 +9,9 @@ namespace autofill {
CardUnmaskDelegate::UnmaskResponse::UnmaskResponse()
: should_store_pan(false) {}
+CardUnmaskDelegate::UnmaskResponse::UnmaskResponse(
+ const UnmaskResponse& other) = default;
+
CardUnmaskDelegate::UnmaskResponse::~UnmaskResponse() {}
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698