Index: chrome/browser/resources/md_history/history_list.js |
diff --git a/chrome/browser/resources/md_history/history_list.js b/chrome/browser/resources/md_history/history_list.js |
index 4f359b324a3c99615143d258ae411cead34b18ff..d0718e23b3160ab99de107e6eb7b55d65cebec98 100644 |
--- a/chrome/browser/resources/md_history/history_list.js |
+++ b/chrome/browser/resources/md_history/history_list.js |
@@ -244,4 +244,13 @@ Polymer({ |
this.historyData_[i].dateRelativeDay != |
this.historyData_[i + 1].dateRelativeDay; |
}, |
+ |
+ /** |
+ * @param {number} index |
+ * @return {boolean} |
+ * @private |
+ */ |
+ isFirstItem_: function(index) { |
+ return index == 0; |
+ } |
}); |