| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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-tap="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-tap="onMenuButtonTap_" | 90 class="more-vert-button" on-click="onMenuButtonTap_" |
| 91 title="$i18n{moreActionsButton}"> | 91 title="$i18n{moreActionsButton}"> |
| 92 <div></div> | 92 <div></div> |
| 93 <div></div> | 93 <div></div> |
| 94 <div></div> | 94 <div></div> |
| 95 </button> | 95 </button> |
| 96 <button is="paper-icon-button-light" class="icon-button" | 96 <button is="paper-icon-button-light" class="icon-button" |
| 97 title$="[[getCollapseTitle_(opened)]]"> | 97 title$="[[getCollapseTitle_(opened)]]"> |
| 98 <iron-icon icon="[[getCollapseIcon_(opened)]]" | 98 <iron-icon icon="[[getCollapseIcon_(opened)]]" |
| 99 id="dropdown-indicator"> | 99 id="dropdown-indicator"> |
| 100 </iron-icon> | 100 </iron-icon> |
| (...skipping 15 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 |