| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/assert.html"> | 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 6 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 9 <link rel="import" href="drive_cache_dialog.html"> | 9 <link rel="import" href="drive_cache_dialog.html"> |
| 10 <link rel="import" href="../prefs/prefs.html"> | 10 <link rel="import" href="../prefs/prefs.html"> |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 <template is="dom-if" if="[[driveEnabled_]]"> | 209 <template is="dom-if" if="[[driveEnabled_]]"> |
| 210 <div class="settings-box two-line" on-tap="onDriveCacheTap_" | 210 <div class="settings-box two-line" on-tap="onDriveCacheTap_" |
| 211 actionable$="[[hasDriveCache_]]" > | 211 actionable$="[[hasDriveCache_]]" > |
| 212 <div class="start"> | 212 <div class="start"> |
| 213 $i18n{storageItemDriveCache} | 213 $i18n{storageItemDriveCache} |
| 214 <div id="driveCacheSize" class="secondary"> | 214 <div id="driveCacheSize" class="secondary"> |
| 215 $i18n{storageSizeComputing} | 215 $i18n{storageSizeComputing} |
| 216 </div> | 216 </div> |
| 217 </div> | 217 </div> |
| 218 <button id="deleteButton" is="paper-icon-button-light" | 218 <button id="deleteButton" is="paper-icon-button-light" |
| 219 aria-label="$i18n{storageItemDriveCache}" | 219 class="icon-delete" aria-label="$i18n{storageItemDriveCache}" |
| 220 aria-describedby="driveSizeCache"> | 220 aria-describedby="driveSizeCache"> |
| 221 <iron-icon icon="cr:delete"></iron-icon> | |
| 222 </button> | 221 </button> |
| 223 </div> | 222 </div> |
| 224 </template> | 223 </template> |
| 225 <div class="settings-box two-line" on-tap="onBrowsingDataTap_" actionable> | 224 <div class="settings-box two-line" on-tap="onBrowsingDataTap_" actionable> |
| 226 <div class="start"> | 225 <div class="start"> |
| 227 $i18n{storageItemBrowsingData} | 226 $i18n{storageItemBrowsingData} |
| 228 <div id="browsingDataSize" class="secondary"> | 227 <div id="browsingDataSize" class="secondary"> |
| 229 $i18n{storageSizeComputing} | 228 $i18n{storageSizeComputing} |
| 230 </div> | 229 </div> |
| 231 </div> | 230 </div> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 259 aria-describedby="otherUsersSize"></button> | 258 aria-describedby="otherUsersSize"></button> |
| 260 </div> | 259 </div> |
| 261 </template> | 260 </template> |
| 262 | 261 |
| 263 <settings-drive-cache-dialog id="storageDriveCache" | 262 <settings-drive-cache-dialog id="storageDriveCache" |
| 264 on-close="onCloseDriveCacheDialog_"> | 263 on-close="onCloseDriveCacheDialog_"> |
| 265 </settings-drive-cache-dialog> | 264 </settings-drive-cache-dialog> |
| 266 </template> | 265 </template> |
| 267 <script src="storage.js"></script> | 266 <script src="storage.js"></script> |
| 268 </dom-module> | 267 </dom-module> |
| OLD | NEW |