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

Unified Diff: components/omnibox/browser/omnibox_edit_model.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/omnibox/browser/omnibox_edit_model.cc
diff --git a/components/omnibox/browser/omnibox_edit_model.cc b/components/omnibox/browser/omnibox_edit_model.cc
index 03311cb4064cfc25846daf449c06358f7ee1d7aa..87302727e29dab8cfd900d491954909f218c6b3c 100644
--- a/components/omnibox/browser/omnibox_edit_model.cc
+++ b/components/omnibox/browser/omnibox_edit_model.cc
@@ -164,6 +164,8 @@ OmniboxEditModel::State::State(bool user_input_in_progress,
autocomplete_input(autocomplete_input) {
}
+OmniboxEditModel::State::State(const State& other) = default;
+
OmniboxEditModel::State::~State() {
}

Powered by Google App Engine
This is Rietveld 408576698