| OLD | NEW |
| 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/router.html"> | 9 <link rel="import" href="chrome://history/router.html"> |
| 10 <link rel="import" href="chrome://history/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 opacity: 1; | 93 opacity: 1; |
| 94 } | 94 } |
| 95 </style> | 95 </style> |
| 96 <history-router selected-page="{{selectedPage_}}" | 96 <history-router selected-page="{{selectedPage_}}" |
| 97 query-state="{{queryState_}}"> | 97 query-state="{{queryState_}}"> |
| 98 </history-router> | 98 </history-router> |
| 99 <history-toolbar id="toolbar" | 99 <history-toolbar id="toolbar" |
| 100 grouped-offset="{{queryState_.groupedOffset}}" | 100 grouped-offset="{{queryState_.groupedOffset}}" |
| 101 grouped-range="{{queryState_.range}}" | 101 grouped-range="{{queryState_.range}}" |
| 102 has-drawer="[[hasDrawer_]]" | 102 has-drawer="[[hasDrawer_]]" |
| 103 has-more-results="[[!queryResult_.info.finished]]" |
| 103 is-grouped-mode="{{grouped_}}" | 104 is-grouped-mode="{{grouped_}}" |
| 104 query-end-time="[[queryResult_.info.queryEndTime]]" | 105 query-info="[[queryResult_.info]]" |
| 105 has-more-results="[[!queryResult_.info.finished]]" | |
| 106 query-start-time="[[queryResult_.info.queryStartTime]]" | |
| 107 querying="[[queryState_.querying]]" | 106 querying="[[queryState_.querying]]" |
| 108 search-term="{{queryState_.searchTerm}}" | 107 search-term="{{queryState_.searchTerm}}" |
| 109 show-menu-promo="[[showMenuPromo_]]" | 108 show-menu-promo="[[showMenuPromo_]]" |
| 110 show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]" | 109 show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]" |
| 111 spinner-active="[[shouldShowSpinner_(queryState_.querying, | 110 spinner-active="[[shouldShowSpinner_(queryState_.querying, |
| 112 queryState_.incremental, | 111 queryState_.incremental, |
| 113 queryState_.searchTerm)]]"> | 112 queryState_.searchTerm)]]"> |
| 114 </history-toolbar> | 113 </history-toolbar> |
| 115 | 114 |
| 116 <div id="main-container"> | 115 <div id="main-container"> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 </history-side-bar> | 147 </history-side-bar> |
| 149 </app-drawer> | 148 </app-drawer> |
| 150 </template> | 149 </template> |
| 151 | 150 |
| 152 <iron-media-query query="(max-width: 1023px)" | 151 <iron-media-query query="(max-width: 1023px)" |
| 153 query-matches="{{hasDrawer_}}"> | 152 query-matches="{{hasDrawer_}}"> |
| 154 </iron-media-query> | 153 </iron-media-query> |
| 155 </template> | 154 </template> |
| 156 <script src="chrome://history/app.js"></script> | 155 <script src="chrome://history/app.js"></script> |
| 157 </dom-module> | 156 </dom-module> |
| OLD | NEW |