Index: components/ntp_snippets/content_suggestion.h |
diff --git a/components/ntp_snippets/content_suggestion.h b/components/ntp_snippets/content_suggestion.h |
index 60ab27285d39153f84cbc3440fa5346646f6a7d5..9f495f275af6a843f1d8e74f7aa777ced3d109d3 100644 |
--- a/components/ntp_snippets/content_suggestion.h |
+++ b/components/ntp_snippets/content_suggestion.h |
@@ -30,6 +30,9 @@ class ContentSuggestion { |
~ContentSuggestion(); |
+ ContentSuggestion(ContentSuggestion&&); |
Marc Treib
2016/06/28 11:29:08
nit: I'd move this up, just under the other ctor.
Philipp Keck
2016/06/28 12:04:08
Done, I moved up both the move-constructor and the
|
+ ContentSuggestion& operator=(ContentSuggestion&&); |
+ |
// An ID for identifying the suggestion. The ID is unique among all |
// suggestions from the same provider, so to determine a globally unique |
// identifier, combine this ID with the provider type. |