| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <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"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 5 <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"> |
| 6 <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"> |
| 7 <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"> |
| 8 <link rel="import" href="drive_cache_dialog.html"> | 9 <link rel="import" href="drive_cache_dialog.html"> |
| 9 <link rel="import" href="../prefs/prefs.html"> | 10 <link rel="import" href="../prefs/prefs.html"> |
| 10 <link rel="import" href="../route.html"> | 11 <link rel="import" href="../route.html"> |
| 11 <link rel="import" href="../settings_shared_css.html"> | 12 <link rel="import" href="../settings_shared_css.html"> |
| 12 | 13 |
| 13 <dom-module id="settings-storage"> | 14 <dom-module id="settings-storage"> |
| 14 <template> | 15 <template> |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 aria-describedby="otherUsersSize"></button> | 259 aria-describedby="otherUsersSize"></button> |
| 259 </div> | 260 </div> |
| 260 </template> | 261 </template> |
| 261 | 262 |
| 262 <settings-drive-cache-dialog id="storageDriveCache" | 263 <settings-drive-cache-dialog id="storageDriveCache" |
| 263 on-close="onCloseDriveCacheDialog_"> | 264 on-close="onCloseDriveCacheDialog_"> |
| 264 </settings-drive-cache-dialog> | 265 </settings-drive-cache-dialog> |
| 265 </template> | 266 </template> |
| 266 <script src="storage.js"></script> | 267 <script src="storage.js"></script> |
| 267 </dom-module> | 268 </dom-module> |
| OLD | NEW |