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

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

Issue 2656443004: MD History: Add routing for grouped history mode. (Closed)
Patch Set: Review comments Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.crisper.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/html/cr/ui.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui.html">
3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha vior/iron-scroll-target-behavior.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-target-beha vior/iron-scroll-target-behavior.html">
7 <link rel="import" href="chrome://history/history_toolbar.html"> 7 <link rel="import" href="chrome://history/history_toolbar.html">
8 <link rel="import" href="chrome://history/list_container.html"> 8 <link rel="import" href="chrome://history/list_container.html">
9 <link rel="import" href="chrome://history/query_manager.html"> 9 <link rel="import" href="chrome://history/query_manager.html">
10 <link rel="import" href="chrome://history/router.html"> 10 <link rel="import" href="chrome://history/router.html">
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 right: 0; 62 right: 0;
63 top: 0; 63 top: 0;
64 transition: opacity 500ms; 64 transition: opacity 500ms;
65 } 65 }
66 66
67 :host([toolbar-shadow_]) #drop-shadow { 67 :host([toolbar-shadow_]) #drop-shadow {
68 opacity: 1; 68 opacity: 1;
69 } 69 }
70 </style> 70 </style>
71 <history-query-manager query-state="{{queryState_}}" 71 <history-query-manager query-state="{{queryState_}}"
72 query-result="[[queryResult_]]"> 72 query-result="[[queryResult_]]"
73 router="[[$$('#router')]]">
73 </history-query-manager> 74 </history-query-manager>
74 <history-router selected-page="{{selectedPage_}}" 75 <history-router id="router"
76 selected-page="{{selectedPage_}}"
77 grouped="[[grouped_]]"
75 query-state="[[queryState_]]"> 78 query-state="[[queryState_]]">
76 </history-router> 79 </history-router>
77 <history-toolbar id="toolbar" 80 <history-toolbar id="toolbar"
78 grouped-offset="[[queryState_.groupedOffset]]" 81 grouped-offset="[[queryState_.groupedOffset]]"
79 grouped-range="[[queryState_.range]]" 82 grouped-range="[[queryState_.range]]"
80 has-drawer="[[hasDrawer_]]" 83 has-drawer="[[hasDrawer_]]"
81 has-more-results="[[!queryResult_.info.finished]]" 84 has-more-results="[[!queryResult_.info.finished]]"
82 is-grouped-mode="[[grouped_]]" 85 is-grouped-mode="[[grouped_]]"
83 query-info="[[queryResult_.info]]" 86 query-info="[[queryResult_.info]]"
84 querying="[[queryState_.querying]]" 87 querying="[[queryState_.querying]]"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 </history-side-bar> 127 </history-side-bar>
125 </dialog> 128 </dialog>
126 </template> 129 </template>
127 130
128 <iron-media-query query="(max-width: 1023px)" 131 <iron-media-query query="(max-width: 1023px)"
129 query-matches="{{hasDrawer_}}"> 132 query-matches="{{hasDrawer_}}">
130 </iron-media-query> 133 </iron-media-query>
131 </template> 134 </template>
132 <script src="chrome://history/app.js"></script> 135 <script src="chrome://history/app.js"></script>
133 </dom-module> 136 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.crisper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698