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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.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/browser/ui/autofill/autofill_dialog_types.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc
index 51dc012bcacd26167230c646686a85bce415316b..084c9895f11ac934147af616118fb38d730b96a6 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -42,6 +42,9 @@ DialogNotification::DialogNotification(Type type,
}
}
+DialogNotification::DialogNotification(const DialogNotification& other) =
+ default;
+
DialogNotification::~DialogNotification() {}
SkColor DialogNotification::GetBackgroundColor() const {
@@ -123,6 +126,7 @@ SuggestionState::SuggestionState(
icon(icon),
extra_text(extra_text),
extra_icon(extra_icon) {}
+SuggestionState::SuggestionState(const SuggestionState& other) = default;
SuggestionState::~SuggestionState() {}
DialogOverlayString::DialogOverlayString() {}
@@ -137,6 +141,7 @@ ValidityMessage::~ValidityMessage() {}
ValidityMessages::ValidityMessages()
: default_message_(ValidityMessage(base::string16(), false)) {}
+ValidityMessages::ValidityMessages(const ValidityMessages& other) = default;
ValidityMessages::~ValidityMessages() {}
void ValidityMessages::Set(

Powered by Google App Engine
This is Rietveld 408576698