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

Side by Side Diff: components/ntp_snippets/content_suggestion.cc

Issue 2780793002: Add extra information for ReadingList ContentSuggestion (Closed)
Patch Set: Address comments Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/ntp_snippets/content_suggestion.h" 5 #include "components/ntp_snippets/content_suggestion.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 namespace ntp_snippets { 9 namespace ntp_snippets {
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 DCHECK(id_.category().IsKnownCategory(KnownCategories::DOWNLOADS)); 48 DCHECK(id_.category().IsKnownCategory(KnownCategories::DOWNLOADS));
49 download_suggestion_extra_ = std::move(download_suggestion_extra); 49 download_suggestion_extra_ = std::move(download_suggestion_extra);
50 } 50 }
51 51
52 void ContentSuggestion::set_recent_tab_suggestion_extra( 52 void ContentSuggestion::set_recent_tab_suggestion_extra(
53 std::unique_ptr<RecentTabSuggestionExtra> recent_tab_suggestion_extra) { 53 std::unique_ptr<RecentTabSuggestionExtra> recent_tab_suggestion_extra) {
54 DCHECK(id_.category().IsKnownCategory(KnownCategories::RECENT_TABS)); 54 DCHECK(id_.category().IsKnownCategory(KnownCategories::RECENT_TABS));
55 recent_tab_suggestion_extra_ = std::move(recent_tab_suggestion_extra); 55 recent_tab_suggestion_extra_ = std::move(recent_tab_suggestion_extra);
56 } 56 }
57 57
58 void ContentSuggestion::set_reading_list_suggestion_extra(
59 std::unique_ptr<ReadingListSuggestionExtra> reading_list_suggestion_extra) {
60 DCHECK(id_.category().IsKnownCategory(KnownCategories::READING_LIST));
61 reading_list_suggestion_extra_ = std::move(reading_list_suggestion_extra);
62 }
63
58 void ContentSuggestion::set_notification_extra( 64 void ContentSuggestion::set_notification_extra(
59 std::unique_ptr<NotificationExtra> notification_extra) { 65 std::unique_ptr<NotificationExtra> notification_extra) {
60 notification_extra_ = std::move(notification_extra); 66 notification_extra_ = std::move(notification_extra);
61 } 67 }
62 68
63 } // namespace ntp_snippets 69 } // namespace ntp_snippets
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698