| 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/iron-flex-layout/iron-f
lex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 6 <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-icon-button/paper
-icon-button-light.html"> |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 </style> | 69 </style> |
| 70 <div id="history-item-container"> | 70 <div id="history-item-container"> |
| 71 <div class="card-title" id="card-heading" aria-expanded$="[[cardOpen_]]" | 71 <div class="card-title" id="card-heading" aria-expanded$="[[cardOpen_]]" |
| 72 aria-controls="collapse" on-tap="toggleTabCard"> | 72 aria-controls="collapse" on-tap="toggleTabCard"> |
| 73 <div> | 73 <div> |
| 74 [[device]] | 74 [[device]] |
| 75 <span id="last-update-time">[[lastUpdateTime]]</span> | 75 <span id="last-update-time">[[lastUpdateTime]]</span> |
| 76 </div> | 76 </div> |
| 77 <div id="right-buttons"> | 77 <div id="right-buttons"> |
| 78 <button is="paper-icon-button-light" id="menu-button" | 78 <button is="paper-icon-button-light" id="menu-button" |
| 79 class="icon-button" on-tap="onMenuButtonTap_"> | 79 class="icon-button" on-tap="onMenuButtonTap_" |
| 80 title="$i18n{moreActionsButton}"> |
| 80 <iron-icon icon="cr:more-vert"></iron-icon> | 81 <iron-icon icon="cr:more-vert"></iron-icon> |
| 81 </button> | 82 </button> |
| 82 <button is="paper-icon-button-light" class="icon-button" | 83 <button is="paper-icon-button-light" class="icon-button" |
| 83 title$="[[getCollapseTitle_(cardOpen_)]]"> | 84 title$="[[getCollapseTitle_(cardOpen_)]]"> |
| 84 <iron-icon icon="cr:expand-less" id="dropdown-indicator"> | 85 <iron-icon icon="cr:expand-less" id="dropdown-indicator"> |
| 85 </iron-icon> | 86 </iron-icon> |
| 86 </button> | 87 </button> |
| 87 </div> | 88 </div> |
| 88 </div> | 89 </div> |
| 89 | 90 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 101 <div id="window-separator" | 102 <div id="window-separator" |
| 102 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> | 103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> |
| 103 </div> | 104 </div> |
| 104 </template> | 105 </template> |
| 105 </div> | 106 </div> |
| 106 </iron-collapse> | 107 </iron-collapse> |
| 107 </div> | 108 </div> |
| 108 </template> | 109 </template> |
| 109 <script src="chrome://history/synced_device_card.js"></script> | 110 <script src="chrome://history/synced_device_card.js"></script> |
| 110 </dom-module> | 111 </dom-module> |
| OLD | NEW |