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

Unified Diff: components/ntp_snippets/remote/ntp_snippets_fetcher.cc

Issue 2402323002: [NTP Snippets] Persist non-article remote suggestions in the DB (Closed)
Patch Set: review Created 4 years, 2 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/remote/ntp_snippets_fetcher.cc
diff --git a/components/ntp_snippets/remote/ntp_snippets_fetcher.cc b/components/ntp_snippets/remote/ntp_snippets_fetcher.cc
index 2de69441bbe8a0557c1d8b5b07e92d7e3c6609c8..160e70ab51db1b0691a9cc5560f932f72178267c 100644
--- a/components/ntp_snippets/remote/ntp_snippets_fetcher.cc
+++ b/components/ntp_snippets/remote/ntp_snippets_fetcher.cc
@@ -152,7 +152,9 @@ bool UsesChromeContentSuggestionsAPI(const GURL& endpoint) {
// Creates snippets from dictionary values in |list| and adds them to
// |snippets|. Returns true on success, false if anything went wrong.
+// |remote_category_id| is only used if |content_suggestions_api| is true.
bool AddSnippetsFromListValue(bool content_suggestions_api,
+ int remote_category_id,
const base::ListValue& list,
NTPSnippet::PtrVector* snippets) {
for (const auto& value : list) {
@@ -163,7 +165,8 @@ bool AddSnippetsFromListValue(bool content_suggestions_api,
std::unique_ptr<NTPSnippet> snippet;
if (content_suggestions_api) {
- snippet = NTPSnippet::CreateFromContentSuggestionsDictionary(*dict);
+ snippet = NTPSnippet::CreateFromContentSuggestionsDictionary(
+ *dict, remote_category_id);
} else {
snippet = NTPSnippet::CreateFromChromeReaderDictionary(*dict);
}
@@ -629,11 +632,13 @@ bool NTPSnippetsFetcher::JsonToSnippets(const base::Value& parsed,
switch (fetch_api_) {
case CHROME_READER_API: {
+ const int kUnusedRemoteCategoryId = -1;
categories->push_back(FetchedCategory(
category_factory_->FromKnownCategory(KnownCategories::ARTICLES)));
const base::ListValue* recos = nullptr;
return top_dict->GetList("recos", &recos) &&
- AddSnippetsFromListValue(/* content_suggestions_api = */ false,
+ AddSnippetsFromListValue(/*content_suggestions_api=*/false,
+ kUnusedRemoteCategoryId,
*recos, &categories->back().snippets);
}
@@ -645,17 +650,17 @@ bool NTPSnippetsFetcher::JsonToSnippets(const base::Value& parsed,
for (const auto& v : *categories_value) {
std::string utf8_title;
- int category_id = -1;
+ int remote_category_id = -1;
const base::DictionaryValue* category_value = nullptr;
if (!(v->GetAsDictionary(&category_value) &&
category_value->GetString("localizedTitle", &utf8_title) &&
- category_value->GetInteger("id", &category_id) &&
- (category_id > 0))) {
+ category_value->GetInteger("id", &remote_category_id) &&
+ (remote_category_id > 0))) {
return false;
}
categories->push_back(FetchedCategory(
- category_factory_->FromRemoteCategory(category_id)));
+ category_factory_->FromRemoteCategory(remote_category_id)));
categories->back().localized_title = base::UTF8ToUTF16(utf8_title);
const base::ListValue* suggestions = nullptr;
@@ -665,8 +670,8 @@ bool NTPSnippetsFetcher::JsonToSnippets(const base::Value& parsed,
continue;
}
if (!AddSnippetsFromListValue(
- /* content_suggestions_api = */ true, *suggestions,
- &categories->back().snippets)) {
+ /*content_suggestions_api=*/true, remote_category_id,
+ *suggestions, &categories->back().snippets)) {
return false;
}
}
« no previous file with comments | « components/ntp_snippets/remote/ntp_snippets_fetcher.h ('k') | components/ntp_snippets/remote/ntp_snippets_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698