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

Side by Side Diff: chrome/browser/resources/md_history/list_container.html

Issue 2084843002: [MD History] Add history-list-container between app and history lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tim_toolbar
Patch Set: rebase 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
(Empty)
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">
3 <link rel="import" href="chrome://history/grouped_list.html">
4 <link rel="import" href="chrome://history/history_list.html">
5
6 <dom-module id="history-list-container">
7 <template>
8 <style>
9 :host {
10 display: block;
11 height: 100%;
12 overflow: hidden;
13 }
14
15 #content,
16 #content > * {
17 height: 100%;
18 }
19 </style>
20 <iron-pages id="content" attr-for-selected="id"
21 selected="[[selectedPage_]]">
22 <history-list id="infinite-list" querying="[[queryState.querying]]"
23 searched-term="[[queryResult_.info.term]]"></history-list>
24 <template is="dom-if" if="[[grouped]]">
25 <history-grouped-list id="grouped-list"
26 range="[[queryState.range]]"
27 query-start-time="[[queryResult_.info.queryStartTime]]"
28 query-end-time="[[queryResult_.info.queryEndTime]]"
29 searched-term="[[queryResult_.info.term]]">
30 </history-grouped-list>
31 </template>
32 </template>
33 </iron-pages>
34 </template>
35 <script src="chrome://history/list_container.js"></script>
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