| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 3 <link rel="import" href="/controls/controlled_button.html"> | 3 <link rel="import" href="../controls/controlled_button.html"> |
| 4 <link rel="import" href="/controls/settings_toggle_button.html"> | 4 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 5 <link rel="import" href="/settings_shared_css.html"> | 5 <link rel="import" href="../settings_shared_css.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-downloads-page"> | 7 <dom-module id="settings-downloads-page"> |
| 8 <template> | 8 <template> |
| 9 <style include="settings-shared"></style> | 9 <style include="settings-shared"></style> |
| 10 <div class="settings-box first two-line"> | 10 <div class="settings-box first two-line"> |
| 11 <div class="start"> | 11 <div class="start"> |
| 12 <div>$i18n{downloadLocation}</div> | 12 <div>$i18n{downloadLocation}</div> |
| 13 <div class="secondary"> | 13 <div class="secondary"> |
| 14 <if expr="not chromeos"> | 14 <if expr="not chromeos"> |
| 15 [[prefs.download.default_directory.value]] | 15 [[prefs.download.default_directory.value]] |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 <settings-toggle-button | 37 <settings-toggle-button |
| 38 pref="{{prefs.gdata.disabled}}" | 38 pref="{{prefs.gdata.disabled}}" |
| 39 label="$i18n{disconnectGoogleDriveAccount}" | 39 label="$i18n{disconnectGoogleDriveAccount}" |
| 40 hidden="[[!pageVisibility.googleDrive]]"> | 40 hidden="[[!pageVisibility.googleDrive]]"> |
| 41 </settings-toggle-button> | 41 </settings-toggle-button> |
| 42 </if> | 42 </if> |
| 43 </div> | 43 </div> |
| 44 </template> | 44 </template> |
| 45 <script src="downloads_page.js"></script> | 45 <script src="downloads_page.js"></script> |
| 46 </dom-module> | 46 </dom-module> |
| OLD | NEW |