| 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_checkbox.html"> |   4 <link rel="import" href="/controls/settings_checkbox.html"> | 
|   5 <link rel="import" href="/controls/settings_input.html"> |  | 
|   6 <link rel="import" href="/settings_shared_css.html"> |   5 <link rel="import" href="/settings_shared_css.html"> | 
|   7  |   6  | 
|   8 <dom-module id="settings-downloads-page"> |   7 <dom-module id="settings-downloads-page"> | 
|   9   <template> |   8   <template> | 
|  10     <style include="settings-shared"></style> |   9     <style include="settings-shared"></style> | 
|  11     <div class="settings-box first two-line"> |  10     <div class="settings-box first two-line"> | 
|  12       <div class="start"> |  11       <div class="start"> | 
|  13         <div>$i18n{downloadLocation}</div> |  12         <div>$i18n{downloadLocation}</div> | 
|  14         <div class="secondary">[[prefs.download.default_directory.value]]</div> |  13         <div class="secondary">[[prefs.download.default_directory.value]]</div> | 
|  15       </div> |  14       </div> | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
|  28 <if expr="chromeos"> |  27 <if expr="chromeos"> | 
|  29       <settings-checkbox pref="{{prefs.gdata.disabled}}" |  28       <settings-checkbox pref="{{prefs.gdata.disabled}}" | 
|  30           label="$i18n{disconnectGoogleDriveAccount}" |  29           label="$i18n{disconnectGoogleDriveAccount}" | 
|  31           hidden="[[!pageVisibility.googleDrive]]"> |  30           hidden="[[!pageVisibility.googleDrive]]"> | 
|  32       </settings-checkbox> |  31       </settings-checkbox> | 
|  33 </if> |  32 </if> | 
|  34     </div> |  33     </div> | 
|  35   </template> |  34   </template> | 
|  36   <script src="downloads_page.js"></script> |  35   <script src="downloads_page.js"></script> | 
|  37 </dom-module> |  36 </dom-module> | 
| OLD | NEW |