Chromium Code Reviews| Index: components/ntp_snippets/content_suggestion.cc |
| diff --git a/components/ntp_snippets/content_suggestion.cc b/components/ntp_snippets/content_suggestion.cc |
| index 0fa4f0cd9dde852a8d368ad0476df7c59c1faadf..b6ff16145f1a0599e97ad04f395c7f033f2bf9a0 100644 |
| --- a/components/ntp_snippets/content_suggestion.cc |
| +++ b/components/ntp_snippets/content_suggestion.cc |
| @@ -15,4 +15,8 @@ ContentSuggestion::ContentSuggestion( |
| ContentSuggestion::~ContentSuggestion() {} |
| +ContentSuggestion::ContentSuggestion(ContentSuggestion&&) = default; |
| + |
| +ContentSuggestion& ContentSuggestion::operator=(ContentSuggestion&&) = default; |
|
Marc Treib
2016/06/28 15:04:55
nit: move to match the order in the header
Philipp Keck
2016/06/30 09:35:35
Done.
|
| + |
| } // namespace ntp_snippets |