Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 std::unique_ptr<DownloadSuggestionExtra> download_suggestion_extra) { | 47 std::unique_ptr<DownloadSuggestionExtra> download_suggestion_extra) { |
| 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 void ContentSuggestion::set_reading_list_suggestion_extra( | |
|
Marc Treib
2017/03/28 13:38:20
empty line before
gambard
2017/03/29 06:51:24
Done.
| |
| 58 std::unique_ptr<ReadingListSuggestionExtra> reading_list_suggestion_extra) { | |
| 59 DCHECK(id_.category().IsKnownCategory(KnownCategories::READING_LIST)); | |
| 60 reading_list_suggestion_extra_ = std::move(reading_list_suggestion_extra); | |
| 61 } | |
| 57 | 62 |
| 58 void ContentSuggestion::set_notification_extra( | 63 void ContentSuggestion::set_notification_extra( |
| 59 std::unique_ptr<NotificationExtra> notification_extra) { | 64 std::unique_ptr<NotificationExtra> notification_extra) { |
| 60 notification_extra_ = std::move(notification_extra); | 65 notification_extra_ = std::move(notification_extra); |
| 61 } | 66 } |
| 62 | 67 |
| 63 } // namespace ntp_snippets | 68 } // namespace ntp_snippets |
| OLD | NEW |