| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 opacity: 1; | 70 opacity: 1; |
| 71 } | 71 } |
| 72 </style> | 72 </style> |
| 73 <history-router selected-page="{{selectedPage_}}" | 73 <history-router selected-page="{{selectedPage_}}" |
| 74 query-state="{{queryState_}}"> | 74 query-state="{{queryState_}}"> |
| 75 </history-router> | 75 </history-router> |
| 76 <history-toolbar id="toolbar" | 76 <history-toolbar id="toolbar" |
| 77 grouped-offset="{{queryState_.groupedOffset}}" | 77 grouped-offset="{{queryState_.groupedOffset}}" |
| 78 grouped-range="{{queryState_.range}}" | 78 grouped-range="{{queryState_.range}}" |
| 79 has-drawer="[[hasDrawer_]]" | 79 has-drawer="[[hasDrawer_]]" |
| 80 has-more-results="[[!queryResult_.info.finished]]" |
| 80 is-grouped-mode="{{grouped_}}" | 81 is-grouped-mode="{{grouped_}}" |
| 81 query-end-time="[[queryResult_.info.queryEndTime]]" | 82 query-info="[[queryResult_.info]]" |
| 82 has-more-results="[[!queryResult_.info.finished]]" | |
| 83 query-start-time="[[queryResult_.info.queryStartTime]]" | |
| 84 querying="[[queryState_.querying]]" | 83 querying="[[queryState_.querying]]" |
| 85 search-term="{{queryState_.searchTerm}}" | 84 search-term="{{queryState_.searchTerm}}" |
| 86 show-menu-promo="[[showMenuPromo_]]" | 85 show-menu-promo="[[showMenuPromo_]]" |
| 87 show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]" | 86 show-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]" |
| 88 spinner-active="[[shouldShowSpinner_(queryState_.querying, | 87 spinner-active="[[shouldShowSpinner_(queryState_.querying, |
| 89 queryState_.incremental, | 88 queryState_.incremental, |
| 90 queryState_.searchTerm)]]"> | 89 queryState_.searchTerm)]]"> |
| 91 </history-toolbar> | 90 </history-toolbar> |
| 92 | 91 |
| 93 <div id="main-container"> | 92 <div id="main-container"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 124 </history-side-bar> | 123 </history-side-bar> |
| 125 </dialog> | 124 </dialog> |
| 126 </template> | 125 </template> |
| 127 | 126 |
| 128 <iron-media-query query="(max-width: 1023px)" | 127 <iron-media-query query="(max-width: 1023px)" |
| 129 query-matches="{{hasDrawer_}}"> | 128 query-matches="{{hasDrawer_}}"> |
| 130 </iron-media-query> | 129 </iron-media-query> |
| 131 </template> | 130 </template> |
| 132 <script src="chrome://history/app.js"></script> | 131 <script src="chrome://history/app.js"></script> |
| 133 </dom-module> | 132 </dom-module> |
| OLD | NEW |