| 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 463aefec888fbdce8ba4daa48c5b8a8ec3dbd4b5..b1fbb1839d41b19a4d75ea9dec3adf12708128dc 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
|
| @@ -17,7 +17,6 @@
|
| import org.chromium.chrome.browser.ntp.snippets.SnippetArticleViewHolder;
|
|
|
| import java.util.ArrayList;
|
| -import java.util.Collections;
|
| import java.util.List;
|
|
|
| /** Utilities to make testing content suggestions code easier. */
|
| @@ -172,8 +171,7 @@ public static void bindViewHolders(InnerNode node) {
|
|
|
| public static void bindViewHolders(InnerNode node, int startIndex, int endIndex) {
|
| for (int i = startIndex; i < endIndex; ++i) {
|
| - node.onBindViewHolder(
|
| - makeViewHolder(node.getItemViewType(i)), i, Collections.emptyList());
|
| + node.onBindViewHolder(makeViewHolder(node.getItemViewType(i)), i);
|
| }
|
| }
|
|
|
|
|