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

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

Issue 2245013003: Remove "list item" from Android NTP class names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: x 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: chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageViewHolder.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageViewHolder.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageViewHolder.java
index 4a47b94e8f4cde265d76b82a8a7940cec9ea623f..bf635455722d7a6d6c88b4b569e45a4f27c2a89d 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageViewHolder.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageViewHolder.java
@@ -9,26 +9,26 @@ import android.view.View;
/**
* Holds metadata about an item we want to display on the NTP. An item can be anything that will be
- * displayed on the NTP RecyclerView.
+ * displayed on the NTP {@link RecyclerView}.
*/
public class NewTabPageViewHolder extends RecyclerView.ViewHolder {
/**
- * Constructs a NewTabPageViewHolder item used to display an part of the NTP (e.g., header,
- * article snippet, above the fold view, etc.)
+ * Constructs a {@link NewTabPageViewHolder} used to display an part of the NTP (e.g., header,
+ * article snippet, above-the-fold view, etc.)
*
- * @param itemView The View for this item
+ * @param itemView The {@link View} for this item
*/
public NewTabPageViewHolder(View itemView) {
super(itemView);
}
/**
- * Called when the NTP cards adapter is requested to update the currently visible ViewHolder
- * with data. The default implementation does nothing.
+ * Called when the NTP cards adapter is requested to update the currently visible
+ * {@link ViewHolder} with data. The default implementation does nothing.
*
- * @param item The NewTabPageListItem object that holds the data for this ViewHolder
+ * @param item The {@link NewTabPageItem} that holds the data for this {@link ViewHolder}
*/
- public void onBindViewHolder(NewTabPageListItem item) {
+ public void onBindViewHolder(NewTabPageItem item) {
}
/**

Powered by Google App Engine
This is Rietveld 408576698