| 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/query_manager.html"> |
| 9 <link rel="import" href="chrome://history/router.html"> | 10 <link rel="import" href="chrome://history/router.html"> |
| 10 <link rel="import" href="chrome://history/shared_style.html"> | 11 <link rel="import" href="chrome://history/shared_style.html"> |
| 11 <link rel="import" href="chrome://history/side_bar.html"> | 12 <link rel="import" href="chrome://history/side_bar.html"> |
| 12 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 13 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 13 | 14 |
| 14 <!-- Lazy loaded: history-synced-device-manager, cr-drawer. --> | 15 <!-- Lazy loaded: history-synced-device-manager, cr-drawer. --> |
| 15 | 16 |
| 16 <dom-module id="history-app"> | 17 <dom-module id="history-app"> |
| 17 <template> | 18 <template> |
| 18 <style include="shared-style"> | 19 <style include="shared-style"> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 position: absolute; | 64 position: absolute; |
| 64 right: 0; | 65 right: 0; |
| 65 top: 0; | 66 top: 0; |
| 66 transition: opacity 500ms; | 67 transition: opacity 500ms; |
| 67 } | 68 } |
| 68 | 69 |
| 69 :host([toolbar-shadow_]) #drop-shadow { | 70 :host([toolbar-shadow_]) #drop-shadow { |
| 70 opacity: 1; | 71 opacity: 1; |
| 71 } | 72 } |
| 72 </style> | 73 </style> |
| 74 <history-query-manager query-state="{{queryState_}}" |
| 75 query-result="[[queryResult_]]"> |
| 76 </history-query-manager> |
| 73 <history-router selected-page="{{selectedPage_}}" | 77 <history-router selected-page="{{selectedPage_}}" |
| 74 query-state="{{queryState_}}"> | 78 query-state="{{queryState_}}"> |
| 75 </history-router> | 79 </history-router> |
| 76 <history-toolbar id="toolbar" | 80 <history-toolbar id="toolbar" |
| 77 grouped-offset="{{queryState_.groupedOffset}}" | 81 grouped-offset="{{queryState_.groupedOffset}}" |
| 78 grouped-range="{{queryState_.range}}" | 82 grouped-range="{{queryState_.range}}" |
| 79 has-drawer="[[hasDrawer_]]" | 83 has-drawer="[[hasDrawer_]]" |
| 80 has-more-results="[[!queryResult_.info.finished]]" | 84 has-more-results="[[!queryResult_.info.finished]]" |
| 81 is-grouped-mode="{{grouped_}}" | 85 is-grouped-mode="{{grouped_}}" |
| 82 query-info="[[queryResult_.info]]" | 86 query-info="[[queryResult_.info]]" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 </history-side-bar> | 127 </history-side-bar> |
| 124 </dialog> | 128 </dialog> |
| 125 </template> | 129 </template> |
| 126 | 130 |
| 127 <iron-media-query query="(max-width: 1023px)" | 131 <iron-media-query query="(max-width: 1023px)" |
| 128 query-matches="{{hasDrawer_}}"> | 132 query-matches="{{hasDrawer_}}"> |
| 129 </iron-media-query> | 133 </iron-media-query> |
| 130 </template> | 134 </template> |
| 131 <script src="chrome://history/app.js"></script> | 135 <script src="chrome://history/app.js"></script> |
| 132 </dom-module> | 136 </dom-module> |
| OLD | NEW |