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

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

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 years, 6 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
OLDNEW
1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v0_8/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/v0_8/paper-input/paper-input .html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
4 <link rel="import" href="chrome://resources/polymer/v0_8/paper-material/paper-ma terial.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html">
5 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_button/cr_button .html"> 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button .html">
6 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_input/cr_input.h tml"> 6 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h tml">
7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> 7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
8 8
9 <dom-module id="cr-settings-downloads-page"> 9 <dom-module id="cr-settings-downloads-page">
10 <link rel="import" type="css" href="chrome://md-settings/settings_page/setting s_page.css"> 10 <link rel="import" type="css" href="chrome://md-settings/settings_page/setting s_page.css">
11 <link rel="import" type="css" href="downloads_page.css"> 11 <link rel="import" type="css" href="downloads_page.css">
12 <template> 12 <template>
13 <paper-material> 13 <paper-material>
14 <div class="horizontal layout center"> 14 <div class="horizontal layout center">
15 <div class="layout horizontal center"> 15 <div class="layout horizontal center">
16 <div id="locationLabel" i18n-content="downloadsLocationLabel"></div> 16 <div id="locationLabel" i18n-content="downloadsLocationLabel"></div>
17 <cr-input id="downloadsPath" floating-label="false" 17 <cr-input id="downloadsPath" floating-label="false"
18 value="{{prefs.download.default_directory.value}}" 18 value="{{prefs.download.default_directory.value}}"
19 readonly aria-labelledby="locationLabel"> 19 readonly aria-labelledby="locationLabel">
20 </cr-input> 20 </cr-input>
21 </div> 21 </div>
22 <cr-button id="changeDownloadsPath" on-click="selectDownloadLocation_" 22 <cr-button id="changeDownloadsPath" on-click="selectDownloadLocation_"
23 i18n-content="downloadsChangeLocationButton"> 23 i18n-content="downloadsChangeLocationButton">
24 </cr-button> 24 </cr-button>
25 </div> 25 </div>
26 <cr-settings-checkbox 26 <cr-settings-checkbox
27 pref="{{prefs.download.prompt_for_download}}" 27 pref="{{prefs.download.prompt_for_download}}"
28 i18n-values="label:downloadsPromptForDownloadLabel"> 28 i18n-values="label:downloadsPromptForDownloadLabel">
29 </cr-settings-checkbox> 29 </cr-settings-checkbox>
30 </paper-material> 30 </paper-material>
31 </template> 31 </template>
32 <script src="downloads_page.js"></script> 32 <script src="downloads_page.js"></script>
33 </dom-module> 33 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698