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

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

Issue 2106103006: MD Settings: cr/cros - Guest mode page visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 5 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"> 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"> 3 <link rel="import" href="/controls/settings_checkbox.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="/settings_shared_css.html">
5 5
6 <dom-module id="settings-date-time-page"> 6 <dom-module id="settings-date-time-page">
7 <template> 7 <template>
8 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
9 <div class="settings-box first block"> 9 <div class="settings-box first block">
10 <div>$i18n{timeZone}</div> 10 <div disabled$="[[!pageVisibility.timeZoneSelector]]">
dpapad 2016/07/22 22:40:48 +michaelpg Are we OK with having HTML refer to Po
Moe 2016/07/24 23:54:26 I think after introducing the sub-types it won't h
11 $i18n{timeZone}
12 </div>
11 <settings-checkbox pref="{{prefs.settings.clock.use_24hour_clock}}" 13 <settings-checkbox pref="{{prefs.settings.clock.use_24hour_clock}}"
12 label="$i18n{use24HourClock}"> 14 label="$i18n{use24HourClock}">
13 </settings-checkbox> 15 </settings-checkbox>
14 <div id="setAutomatically">$i18n{dateTimeSetAutomatically}</div> 16 <div id="setAutomatically">$i18n{dateTimeSetAutomatically}</div>
15 </div> 17 </div>
16 </template> 18 </template>
17 <script src="date_time_page.js"></script> 19 <script src="date_time_page.js"></script>
18 </dom-module> 20 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698