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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.h

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.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.h b/chrome/browser/ui/autofill/autofill_dialog_types.h
index 036c0c6d37c7e9eaf7abae9cb8a97327feb14870..7626a57b65bd5bc8b6147072f1a18600f390cb4b 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h
@@ -39,6 +39,7 @@ class DialogNotification {
DialogNotification();
DialogNotification(Type type, const base::string16& display_text);
+ DialogNotification(const DialogNotification& other);
~DialogNotification();
// Returns the appropriate background, border, or text color for the view's
@@ -99,6 +100,7 @@ struct SuggestionState {
const gfx::Image& icon,
const base::string16& extra_text,
const gfx::Image& extra_icon);
+ SuggestionState(const SuggestionState& other);
~SuggestionState();
// Whether a suggestion should be shown.
@@ -167,6 +169,7 @@ struct ValidityMessage {
class ValidityMessages {
public:
ValidityMessages();
+ ValidityMessages(const ValidityMessages& other);
~ValidityMessages();
// Sets the message for |field|, but will not overwrite a previous, invalid

Powered by Google App Engine
This is Rietveld 408576698