Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / resources / settings / downloads_page / downloads_page.html
blobb8efcacf65d682a2e2a34724b723744fe4ae7950
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
4 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html">
6 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
8 <dom-module id="cr-settings-downloads-page">
9 <link rel="import" type="css"
10 href="chrome://md-settings/settings_page/settings_page.css">
11 <link rel="import" type="css" href="downloads_page.css">
12 <template>
13 <div class="horizontal layout center">
14 <div class="layout horizontal center">
15 <div id="locationLabel" i18n-content="downloadLocation"></div>
16 <cr-input id="downloadsPath" floating-label="false"
17 value="{{prefs.download.default_directory.value}}"
18 readonly aria-labelledby="locationLabel">
19 </cr-input>
20 </div>
21 <cr-button id="changeDownloadsPath" on-click="selectDownloadLocation_"
22 i18n-content="changeDownloadLocation">
23 </cr-button>
24 </div>
25 <cr-settings-checkbox pref="{{prefs.download.prompt_for_download}}"
26 i18n-values="label:promptForDownload">
27 </cr-settings-checkbox>
28 </template>
29 <script src="downloads_page.js"></script>
30 </dom-module>