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

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

Issue 2122823002: [MD History] Fix issues caused by refactor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@funky_fresh
Patch Set: fix nit Created 4 years, 5 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/app.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/app.html
diff --git a/chrome/browser/resources/md_history/app.html b/chrome/browser/resources/md_history/app.html
index 00d0badf91542ef84b425036fac4852ce6bb9e48..4a170c9760b4610ec900234ebd88c80f592dd15b 100644
--- a/chrome/browser/resources/md_history/app.html
+++ b/chrome/browser/resources/md_history/app.html
@@ -43,19 +43,20 @@
is-grouped-mode="{{grouped_}}"
grouped-range="{{queryState_.range}}"
search-term="{{queryState_.searchTerm}}"
- query-start-time="[[queryState_.info.queryStartTime]]"
- query-end-time="[[queryState_.info.queryEndTime]]">
+ query-start-time="[[queryResult_.info.queryStartTime]]"
+ query-end-time="[[queryResult_.info.queryEndTime]]">
</history-toolbar>
<div id="main-container">
<iron-pages id="content" attr-for-selected="id"
selected="[[selectedPage_]]">
<history-list-container id="history" query-state="[[queryState_]]"
- grouped="[[grouped_]]"></history-list-container>
+ query-result="[[queryResult_]]" grouped="[[grouped_]]">
+ </history-list-container>
<template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]">
<history-synced-device-manager id="synced-devices"
- session-list="[[sessionList]]"
- searched-term=[[queryState_.info.term]]>
+ session-list="[[queryResult_.sessionList]]"
+ searched-term=[[queryState_.searchTerm]]>
</history-synced-device-manager>
</template>
</iron-pages>
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698