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

Unified Diff: chrome/browser/spellchecker/misspelling.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/spellchecker/misspelling.cc
diff --git a/chrome/browser/spellchecker/misspelling.cc b/chrome/browser/spellchecker/misspelling.cc
index a540cc98bbab5a8daaf5623b52a9c13eb1b19b96..2e205e25c0b9bca123be9c9277bf58c5e0d0565f 100644
--- a/chrome/browser/spellchecker/misspelling.cc
+++ b/chrome/browser/spellchecker/misspelling.cc
@@ -46,6 +46,8 @@ Misspelling::Misspelling(const base::string16& context,
hash(hash),
timestamp(base::Time::Now()) {}
+Misspelling::Misspelling(const Misspelling& other) = default;
+
Misspelling::~Misspelling() {}
scoped_ptr<base::DictionaryValue> SerializeMisspelling(

Powered by Google App Engine
This is Rietveld 408576698