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

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

Issue 2840713002: MD Settings: Remove usage of deprecated iron-flex-layout.html. (Closed)
Patch Set: Fix broken layout in startup_urls_page.html Created 3 years, 7 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/html/util.html"> 1 <link rel="import" href="chrome://resources/html/util.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
5 <link rel="import" href="../controls/controlled_button.html"> 4 <link rel="import" href="../controls/controlled_button.html">
6 <link rel="import" href="../controls/settings_toggle_button.html"> 5 <link rel="import" href="../controls/settings_toggle_button.html">
7 <link rel="import" href="../settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
8 <link rel="import" href="downloads_browser_proxy.html"> 7 <link rel="import" href="downloads_browser_proxy.html">
9 8
10 <dom-module id="settings-downloads-page"> 9 <dom-module id="settings-downloads-page">
11 <template> 10 <template>
12 <style include="settings-shared"></style> 11 <style include="settings-shared">
12 .block {
13 display: block;
14 }
15 </style>
13 <div class="settings-box first two-line"> 16 <div class="settings-box first two-line">
14 <div class="start"> 17 <div class="start">
15 <div>$i18n{downloadLocation}</div> 18 <div>$i18n{downloadLocation}</div>
16 <div class="secondary" no-search> 19 <div class="secondary" no-search>
17 <if expr="not chromeos"> 20 <if expr="not chromeos">
18 [[prefs.download.default_directory.value]] 21 [[prefs.download.default_directory.value]]
19 </if> 22 </if>
20 <if expr="chromeos"> 23 <if expr="chromeos">
21 [[getDownloadLocation_(prefs.download.default_directory.value)]] 24 [[getDownloadLocation_(prefs.download.default_directory.value)]]
22 </if> 25 </if>
(...skipping 30 matching lines...) Expand all
53 <paper-button id="resetAutoOpenFileTypes" class="secondary-button" 56 <paper-button id="resetAutoOpenFileTypes" class="secondary-button"
54 on-tap="onClearAutoOpenFileTypesTap_"> 57 on-tap="onClearAutoOpenFileTypesTap_">
55 $i18n{clear} 58 $i18n{clear}
56 </paper-button> 59 </paper-button>
57 </div> 60 </div>
58 </div> 61 </div>
59 </template> 62 </template>
60 </template> 63 </template>
61 <script src="downloads_page.js"></script> 64 <script src="downloads_page.js"></script>
62 </dom-module> 65 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698