Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/ntp/snippets/SuggestionsSource.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/snippets/SuggestionsSource.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/snippets/SuggestionsSource.java |
| index 2d691206d79fe62217503b4716ed832416d539af..d4c9879f041805bb9c40d1600d4266684d0403dd 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/snippets/SuggestionsSource.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/snippets/SuggestionsSource.java |
| @@ -51,6 +51,12 @@ public interface SuggestionsSource { |
| List<SnippetArticleListItem> getSuggestionsForCategory(int category); |
| /** |
| + * Triggers a fetch for new suggestions (over the network, for example) for the given |
| + * |category|. This must be initiated by the user (e.g. by clicking the a "More" button). |
|
Michael van Ouwerkerk
2016/08/10 10:09:29
s/the a/a/
Philipp Keck
2016/08/10 13:14:46
Done.
|
| + */ |
| + void fetchMoreSuggestions(int category); |
| + |
| + /** |
| * Fetches the thumbnail image for a content suggestion. A null Bitmap is returned if no image |
| * is available. The callback is never called synchronously. |
| */ |