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

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

Issue 2221073004: Replace deprecated iron-flex-layout/classes with iron-flex-layout-class in MD Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo ^ Created 4 years, 4 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/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">
3 <link rel="import" href="/controls/settings_checkbox.html"> 2 <link rel="import" href="/controls/settings_checkbox.html">
4 <link rel="import" href="/settings_shared_css.html"> 3 <link rel="import" href="/settings_shared_css.html">
5 4
6 <dom-module id="settings-date-time-page"> 5 <dom-module id="settings-date-time-page">
7 <template> 6 <template>
8 <style include="settings-shared"></style> 7 <style include="settings-shared"></style>
9 <div class="settings-box first block"> 8 <div class="settings-box first block">
10 <div disabled$="[[!pageVisibility.timeZoneSelector]]"> 9 <div disabled$="[[!pageVisibility.timeZoneSelector]]">
11 $i18n{timeZone} 10 $i18n{timeZone}
12 </div> 11 </div>
13 <settings-checkbox pref="{{prefs.settings.clock.use_24hour_clock}}" 12 <settings-checkbox pref="{{prefs.settings.clock.use_24hour_clock}}"
14 label="$i18n{use24HourClock}"> 13 label="$i18n{use24HourClock}">
15 </settings-checkbox> 14 </settings-checkbox>
16 <div id="setAutomatically">$i18n{dateTimeSetAutomatically}</div> 15 <div id="setAutomatically">$i18n{dateTimeSetAutomatically}</div>
17 </div> 16 </div>
18 </template> 17 </template>
19 <script src="date_time_page.js"></script> 18 <script src="date_time_page.js"></script>
20 </dom-module> 19 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698