| 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/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.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="drive_cache_dialog.html"> | 6 <link rel="import" href="drive_cache_dialog.html"> |
| 7 <link rel="import" href="../prefs/prefs.html"> | 7 <link rel="import" href="../prefs/prefs.html"> |
| 8 <link rel="import" href="../route.html"> | 8 <link rel="import" href="../route.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 <template is="dom-if" if="[[driveEnabled_]]"> | 206 <template is="dom-if" if="[[driveEnabled_]]"> |
| 207 <div class="settings-box two-line" on-tap="onDriveCacheTap_" | 207 <div class="settings-box two-line" on-tap="onDriveCacheTap_" |
| 208 actionable$="[[hasDriveCache_]]" > | 208 actionable$="[[hasDriveCache_]]" > |
| 209 <div class="start"> | 209 <div class="start"> |
| 210 $i18n{storageItemDriveCache} | 210 $i18n{storageItemDriveCache} |
| 211 <div id="driveCacheSize" class="secondary"> | 211 <div id="driveCacheSize" class="secondary"> |
| 212 $i18n{storageSizeComputing} | 212 $i18n{storageSizeComputing} |
| 213 </div> | 213 </div> |
| 214 </div> | 214 </div> |
| 215 <button id="deleteButton" is="paper-icon-button-light" | 215 <button id="deleteButton" is="paper-icon-button-light" |
| 216 aria-label="$i18n{storageItemDriveCache}" | 216 class="icon-delete" aria-label="$i18n{storageItemDriveCache}" |
| 217 aria-describedby="driveSizeCache"> | 217 aria-describedby="driveSizeCache"> |
| 218 <iron-icon icon="cr:delete"></iron-icon> | |
| 219 </button> | 218 </button> |
| 220 </div> | 219 </div> |
| 221 </template> | 220 </template> |
| 222 <div class="settings-box two-line" on-tap="onBrowsingDataTap_" actionable> | 221 <div class="settings-box two-line" on-tap="onBrowsingDataTap_" actionable> |
| 223 <div class="start"> | 222 <div class="start"> |
| 224 $i18n{storageItemBrowsingData} | 223 $i18n{storageItemBrowsingData} |
| 225 <div id="browsingDataSize" class="secondary"> | 224 <div id="browsingDataSize" class="secondary"> |
| 226 $i18n{storageSizeComputing} | 225 $i18n{storageSizeComputing} |
| 227 </div> | 226 </div> |
| 228 </div> | 227 </div> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 256 aria-describedby="otherUsersSize"></button> | 255 aria-describedby="otherUsersSize"></button> |
| 257 </div> | 256 </div> |
| 258 </template> | 257 </template> |
| 259 | 258 |
| 260 <settings-drive-cache-dialog id="storageDriveCache" | 259 <settings-drive-cache-dialog id="storageDriveCache" |
| 261 on-close="onCloseDriveCacheDialog_"> | 260 on-close="onCloseDriveCacheDialog_"> |
| 262 </settings-drive-cache-dialog> | 261 </settings-drive-cache-dialog> |
| 263 </template> | 262 </template> |
| 264 <script src="storage.js"></script> | 263 <script src="storage.js"></script> |
| 265 </dom-module> | 264 </dom-module> |
| OLD | NEW |