Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/browser/resources/settings/downloads_page/downloads_page.html

Issue 1836583002: [MD settings] match downloads path to mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: touchups Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> 4 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html">
5 <link rel="import" href="chrome://md-settings/controls/settings_input.html"> 5 <link rel="import" href="chrome://md-settings/controls/settings_input.html">
6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
7 7
8 <dom-module id="settings-downloads-page"> 8 <dom-module id="settings-downloads-page">
9 <link rel="import" type="css" href="downloads_page.css"> 9 <link rel="import" type="css" href="downloads_page.css">
10 <template> 10 <template>
11 <style include="settings-shared"></style> 11 <style include="settings-shared"></style>
12 <div class="settings-box first"> 12 <div class="settings-box first two-line">
13 <div class="start"> 13 <div class="start">
14 <settings-input id="downloadsPath" always-flow-label readonly 14 <div>$i18n{downloadLocation}</div>
15 i18n-values="label:downloadLocation" 15 <div class="secondary">[[prefs.download.default_directory.value]]</div>
16 pref="{{prefs.download.default_directory}}"
17 aria-labelledby="locationLabel">
18 </settings-input>
19 </div> 16 </div>
20 <paper-button id="changeDownloadsPath" on-tap="selectDownloadLocation_" 17 <paper-button class="secondary-action" id="changeDownloadsPath"
21 i18n-content="changeDownloadLocation"> 18 on-tap="selectDownloadLocation_">
19 $i18n{changeDownloadLocation}
22 </paper-button> 20 </paper-button>
23 </div> 21 </div>
24 <div class="settings-box block"> 22 <div class="settings-box block">
25 <settings-checkbox pref="{{prefs.download.prompt_for_download}}" 23 <settings-checkbox pref="{{prefs.download.prompt_for_download}}"
26 i18n-values="label:promptForDownload"> 24 label="$i18n{promptForDownload}">
27 </settings-checkbox> 25 </settings-checkbox>
28 <if expr="chromeos"> 26 <if expr="chromeos">
29 <settings-checkbox pref="{{prefs.gdata.disabled}}" 27 <settings-checkbox pref="{{prefs.gdata.disabled}}"
30 i18n-values="label:disconnectGoogleDriveAccount"> 28 label="$i18n{disconnectGoogleDriveAccount}">
31 </settings-checkbox> 29 </settings-checkbox>
32 </if> 30 </if>
33 </div> 31 </div>
34 </template> 32 </template>
35 <script src="downloads_page.js"></script> 33 <script src="downloads_page.js"></script>
36 </dom-module> 34 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698