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

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

Issue 2593573003: Ntp: use AMP urls for content suggestions when available. (Closed)
Patch Set: Address review comments by vitalii. Created 4 years 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 476100c8f8f19d8b3b168369207c41e9b06fc56d..0979f149dc9b4e271c936e8a152a657208637407 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
@@ -24,7 +24,7 @@ public final class ContentSuggestionsTestUtils {
for (int index = 0; index < count; index++) {
suggestions.add(new SnippetArticle(KnownCategories.BOOKMARKS,
"https://site.com/url" + index, "title" + index, "pub" + index, "txt" + index,
- "https://site.com/url" + index, "https://amp.site.com/url" + index, 0, 0, 0));
+ "https://site.com/url" + index, 0, 0, 0));
}
return suggestions;
}

Powered by Google App Engine
This is Rietveld 408576698