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

Side by Side Diff: chrome/browser/resources/md_history/list_container.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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
3 <link rel="import" href="chrome://history/grouped_list.html"> 3 <link rel="import" href="chrome://history/grouped_list.html">
4 <link rel="import" href="chrome://history/history_list.html"> 4 <link rel="import" href="chrome://history/history_list.html">
5 5
6 <dom-module id="history-list-container"> 6 <dom-module id="history-list-container">
7 <template> 7 <template>
8 <style> 8 <style>
9 :host { 9 :host {
10 display: block; 10 display: block;
11 height: 100%; 11 height: 100%;
12 overflow: hidden; 12 overflow: hidden;
13 } 13 }
14 14
15 #content, 15 #content,
16 #content > * { 16 #content > * {
17 height: 100%; 17 height: 100%;
18 } 18 }
19 </style> 19 </style>
20 <iron-pages id="content" attr-for-selected="id" 20 <iron-pages id="content" attr-for-selected="id"
21 selected="[[selectedPage_]]"> 21 selected="[[selectedPage_]]">
22 <history-list id="infinite-list" querying="[[queryState.querying]]" 22 <history-list id="infinite-list" querying="[[queryState.querying]]"
23 searched-term="[[queryResult_.info.term]]"></history-list> 23 searched-term="[[queryResult.info.term]]"></history-list>
24 <template is="dom-if" if="[[grouped]]"> 24 <template is="dom-if" if="[[grouped]]">
25 <history-grouped-list id="grouped-list" 25 <history-grouped-list id="grouped-list"
26 range="[[queryState.range]]" 26 range="[[queryState.range]]"
27 query-start-time="[[queryResult_.info.queryStartTime]]" 27 query-start-time="[[queryResult.info.queryStartTime]]"
28 query-end-time="[[queryResult_.info.queryEndTime]]" 28 query-end-time="[[queryResult.info.queryEndTime]]"
29 searched-term="[[queryResult_.info.term]]"> 29 searched-term="[[queryResult.info.term]]">
30 </history-grouped-list> 30 </history-grouped-list>
31 </template> 31 </template>
32 </template> 32 </template>
33 </iron-pages> 33 </iron-pages>
34 </template> 34 </template>
35 <script src="chrome://history/list_container.js"></script> 35 <script src="chrome://history/list_container.js"></script>
36 </dom-module> 36 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/constants.js ('k') | chrome/browser/resources/md_history/list_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698