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

Unified Diff: components/ntp_snippets/content_suggestions_service.cc

Issue 2232783002: Support action button to fetch more content suggestions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snippetsbridge
Patch Set: Refactor NewTabPageAdapterTest Created 4 years, 4 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_suggestions_service.cc
diff --git a/components/ntp_snippets/content_suggestions_service.cc b/components/ntp_snippets/content_suggestions_service.cc
index 3311d45624a4372568a304e857f205ae9f105b79..adc71573280f5b33f0b51f51be9bbb6e0f023bba 100644
--- a/components/ntp_snippets/content_suggestions_service.cc
+++ b/components/ntp_snippets/content_suggestions_service.cc
@@ -187,6 +187,10 @@ void ContentSuggestionsService::OnNewSuggestions(
NotifyCategoryStatusChanged(category);
}
+ if (!IsCategoryStatusAvailable(provider->GetCategoryStatus(category))) {
Bernhard Bauer 2016/08/12 09:03:09 Nit: The if-statement above uses braces for a sing
Philipp Keck 2016/08/12 09:16:42 Removed them here and just above and just below.
+ return;
+ }
+
for (const ContentSuggestion& suggestion :
suggestions_by_category_[category]) {
id_category_map_.erase(suggestion.id());

Powered by Google App Engine
This is Rietveld 408576698