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

Unified Diff: components/ntp_snippets/content_suggestion.h

Issue 2102023002: Add ContentSuggestionsService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/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.

Powered by Google App Engine
This is Rietveld 408576698