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

Unified Diff: chrome/browser/resources/md_history/history_list.html

Issue 1972073002: [MD History] Make history-list:historyData private. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_loading
Patch Set: oopz Created 4 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_list.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/history_list.html
diff --git a/chrome/browser/resources/md_history/history_list.html b/chrome/browser/resources/md_history/history_list.html
index e68c8d99290c8fca891f400411069ce63ed1e949..3686aa71f2a956446dcdab907ceae13effa7bf6c 100644
--- a/chrome/browser/resources/md_history/history_list.html
+++ b/chrome/browser/resources/md_history/history_list.html
@@ -33,20 +33,20 @@
}
</style>
<div id="no-results" class="centered-message"
- hidden$="{{hasResults(historyData.length)}}">
+ hidden$="{{hasResults(historyData_.length)}}">
{{noResultsMessage_(searchedTerm, querying)}}
</div>
- <iron-list items="{{historyData}}" as="item" id="infinite-list"
- hidden$="{{!hasResults(historyData.length)}}">
+ <iron-list items="{{historyData_}}" as="item" id="infinite-list"
+ hidden$="{{!hasResults(historyData_.length)}}">
<template>
<history-item item="[[item]]"
starred="[[item.starred]]"
selected="{{item.selected}}"
- is-card-start="[[isCardStart_(item, index, historyData.length)]]"
- is-card-end="[[isCardEnd_(item, index, historyData.length)]]"
- has-time-gap="[[needsTimeGap_(item, index, historyData.length)]]"
+ is-card-start="[[isCardStart_(item, index, historyData_.length)]]"
+ is-card-end="[[isCardEnd_(item, index, historyData_.length)]]"
+ has-time-gap="[[needsTimeGap_(item, index, historyData_.length)]]"
search-term="[[searchedTerm]]"
- number-of-items="[[historyData.length]]">
+ number-of-items="[[historyData_.length]]">
</history-item>
</template>
</iron-list>
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698