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

Side by Side Diff: chrome/browser/resources/options/browser_options.html

Issue 2849823003: ChromeOS: implement per-user time zone preferences. (Closed)
Patch Set: Rebased. Created 3 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 <if expr="chromeos"> 1 <if expr="chromeos">
2 <link rel="import" href="/people_page/lock_screen_constants.html"> 2 <link rel="import" href="/people_page/lock_screen_constants.html">
3 </if> 3 </if>
4 <div id="settings" class="page" hidden> 4 <div id="settings" class="page" hidden>
5 <header> 5 <header>
6 <h1 i18n-content="settingsTitle"></h1> 6 <h1 i18n-content="settingsTitle"></h1>
7 </header> 7 </header>
8 <include src="automatic_settings_reset_banner.html"> 8 <include src="automatic_settings_reset_banner.html">
9 <if expr="chromeos"> 9 <if expr="chromeos">
10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico n.html"> 10 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico n.html">
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 <section id="date-time-section"> 318 <section id="date-time-section">
319 <h3 i18n-content="datetimeTitle"></h3> 319 <h3 i18n-content="datetimeTitle"></h3>
320 <div class="option-control-table"> 320 <div class="option-control-table">
321 <div guest-visibility="disabled"> 321 <div guest-visibility="disabled">
322 <span id="timezone-value-label" class="option-name" 322 <span id="timezone-value-label" class="option-name"
323 i18n-content="timezone"></span> 323 i18n-content="timezone"></span>
324 <div id="timezone-value"> 324 <div id="timezone-value">
325 <select class="control" 325 <select class="control"
326 id="timezone-value-select" 326 id="timezone-value-select"
327 i18n-options="timezoneList" data-type="string" 327 i18n-options="timezoneList" data-type="string"
328 pref="cros.system.timezone" 328 pref="settings.timezone"
329 aria-labelledby="timezone-value-label" 329 aria-labelledby="timezone-value-label"
330 metric="Options_TimezoneSelect"></select> 330 metric="Options_TimezoneSelect"></select>
331 </div> 331 </div>
332 </div> 332 </div>
333 <div class="checkbox settings-row"> 333 <div class="checkbox settings-row">
334 <div id="resolve-timezone-by-geolocation-selection" hidden> 334 <div id="resolve-timezone-by-geolocation-selection" hidden>
335 <label> 335 <label>
336 <input id="resolve-timezone-by-geolocation" 336 <input id="resolve-timezone-by-geolocation"
337 pref="settings.resolve_timezone_by_geolocation" 337 pref="settings.resolve_timezone_by_geolocation"
338 metric="Options_ResolveTimezoneByGeoLocation" type="checkbox"> 338 metric="Options_ResolveTimezoneByGeoLocation" type="checkbox">
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 </button> 1135 </button>
1136 </div> 1136 </div>
1137 </section> 1137 </section>
1138 </div> <!-- advanced-settings-container --> 1138 </div> <!-- advanced-settings-container -->
1139 </div> <!-- advanced-settings --> 1139 </div> <!-- advanced-settings -->
1140 <footer id="advanced-settings-footer"> 1140 <footer id="advanced-settings-footer">
1141 <a is="action-link" id="advanced-settings-expander" 1141 <a is="action-link" id="advanced-settings-expander"
1142 i18n-content="showAdvancedSettings"></a> 1142 i18n-content="showAdvancedSettings"></a>
1143 </footer> 1143 </footer>
1144 </div> 1144 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698