| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 7 <link rel="import" href="chrome://resources/html/icon.html"> | 7 <link rel="import" href="chrome://resources/html/icon.html"> |
| 8 <link rel="import" href="chrome://history/browser_service.html"> | 8 <link rel="import" href="chrome://history/browser_service.html"> |
| 9 <link rel="import" href="chrome://history/constants.html"> | 9 <link rel="import" href="chrome://history/constants.html"> |
| 10 <link rel="import" href="chrome://history/searched_label.html"> | 10 <link rel="import" href="chrome://history/searched_label.html"> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 #window-separator { | 72 #window-separator { |
| 73 background-color: var(--card-border-color); | 73 background-color: var(--card-border-color); |
| 74 height: 1px; | 74 height: 1px; |
| 75 margin: 5px auto; | 75 margin: 5px auto; |
| 76 width: 80%; | 76 width: 80%; |
| 77 } | 77 } |
| 78 </style> | 78 </style> |
| 79 <div id="history-item-container"> | 79 <div id="history-item-container"> |
| 80 <div class="card-title" id="card-heading" aria-expanded$="[[opened]]" | 80 <div class="card-title" id="card-heading" aria-expanded$="[[opened]]" |
| 81 aria-controls="collapse" on-tap="toggleTabCard"> | 81 aria-controls="collapse" on-click="toggleTabCard"> |
| 82 <div id="title-left-content"> | 82 <div id="title-left-content"> |
| 83 <div id="device-name"> | 83 <div id="device-name"> |
| 84 [[device]] | 84 [[device]] |
| 85 </div> | 85 </div> |
| 86 <span id="last-update-time">[[lastUpdateTime]]</span> | 86 <span id="last-update-time">[[lastUpdateTime]]</span> |
| 87 </div> | 87 </div> |
| 88 <div id="right-buttons"> | 88 <div id="right-buttons"> |
| 89 <button is="paper-icon-button-light" id="menu-button" | 89 <button is="paper-icon-button-light" id="menu-button" |
| 90 class="more-vert-button" on-click="onMenuButtonTap_" | 90 class="more-vert-button" on-click="onMenuButtonTap_" |
| 91 title="$i18n{moreActionsButton}"> | 91 title="$i18n{moreActionsButton}"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 116 <div id="window-separator" | 116 <div id="window-separator" |
| 117 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> | 117 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> |
| 118 </div> | 118 </div> |
| 119 </template> | 119 </template> |
| 120 </div> | 120 </div> |
| 121 </iron-collapse> | 121 </iron-collapse> |
| 122 </div> | 122 </div> |
| 123 </template> | 123 </template> |
| 124 <script src="chrome://history/synced_device_card.js"></script> | 124 <script src="chrome://history/synced_device_card.js"></script> |
| 125 </dom-module> | 125 </dom-module> |
| OLD | NEW |