| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> |
| 6 <link rel="import" href="chrome://history/shared_style.html"> | 6 <link rel="import" href="chrome://history/shared_style.html"> |
| 7 | 7 |
| 8 <dom-module id="history-toolbar"> | 8 <dom-module id="history-toolbar"> |
| 9 <template> | 9 <template> |
| 10 <style include="shared-style"></style> | 10 <style include="shared-style"></style> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 #front-padding { | 72 #front-padding { |
| 73 flex: 1 1 0; | 73 flex: 1 1 0; |
| 74 min-width: 100px; | 74 min-width: 100px; |
| 75 } | 75 } |
| 76 | 76 |
| 77 #back-padding { | 77 #back-padding { |
| 78 flex: 1 1 0; | 78 flex: 1 1 0; |
| 79 } | 79 } |
| 80 </style> | 80 </style> |
| 81 | |
| 82 <div id="toolbar-container"> | 81 <div id="toolbar-container"> |
| 83 <div id="main-content" hidden$="{{itemsSelected_}}"> | 82 <div id="main-content" hidden$="{{itemsSelected_}}"> |
| 84 <h1 i18n-content="title" id="title"></h1> | 83 <h1 i18n-content="title" id="title"></h1> |
| 85 <cr-search-field id="search-input" | 84 <cr-search-field id="search-input" |
| 86 i18n-values="label:search;clear-label:clearSearch"> | 85 i18n-values="label:search;clear-label:clearSearch"> |
| 87 </cr-search-field> | 86 </cr-search-field> |
| 88 </div> | 87 </div> |
| 89 | 88 |
| 90 <div id="items" hidden$="{{!itemsSelected_}}"> | 89 <div id="items" hidden$="{{!itemsSelected_}}"> |
| 91 <paper-icon-button icon="clear" id="cancel-icon-button" | 90 <paper-icon-button icon="clear" id="cancel-icon-button" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 104 <paper-button on-tap="onClearBrowsingDataTap_" | 103 <paper-button on-tap="onClearBrowsingDataTap_" |
| 105 i18n-content="clearBrowsingData" | 104 i18n-content="clearBrowsingData" |
| 106 id="clear-browsing-data-button"> | 105 id="clear-browsing-data-button"> |
| 107 </paper-button> | 106 </paper-button> |
| 108 </div> | 107 </div> |
| 109 <div id="back-padding"></div> | 108 <div id="back-padding"></div> |
| 110 </div> | 109 </div> |
| 111 </template> | 110 </template> |
| 112 <script src="chrome://history/history_toolbar.js"></script> | 111 <script src="chrome://history/history_toolbar.js"></script> |
| 113 </dom-module> | 112 </dom-module> |
| OLD | NEW |