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

Unified Diff: chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java

Issue 2686063003: [remote suggestions] Attach the fetch time to RemoteSnippets, ContentSnippets and SnippetArticle (Closed)
Patch Set: Addresse comment treib@ Created 3 years, 10 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: chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java
diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java b/chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java
index dc12b67a44b216fa774d2e42457a1b6eda3406df..7dbe8c291da97918f9ba6129abb0423862feccc1 100644
--- a/chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java
+++ b/chrome/android/junit/src/org/chromium/chrome/browser/ntp/cards/ContentSuggestionsTestUtils.java
@@ -33,7 +33,7 @@ public final class ContentSuggestionsTestUtils {
for (int index = 0; index < count; index++) {
suggestions.add(new SnippetArticle(category, "https://site.com/url" + prefix + index,
prefix + "title" + index, "pub" + index, "txt" + index,
- "https://site.com/url" + index, 0, 0));
+ "https://site.com/url" + index, 0, 0, 0));
}
return suggestions;
}

Powered by Google App Engine
This is Rietveld 408576698