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

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

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Set Time Dialog Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <div id="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <include src="reset_profile_settings_banner.html"> 5 <include src="reset_profile_settings_banner.html">
6 <include src="automatic_settings_reset_banner.html"> 6 <include src="automatic_settings_reset_banner.html">
7 <if expr="chromeos"> 7 <if expr="chromeos">
8 <include src="secondary_user_banner.html"> 8 <include src="secondary_user_banner.html">
9 <section> 9 <section>
10 <div id="network-section-header" class="section-header"> 10 <div id="network-section-header" class="section-header">
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 <div guest-visibility="disabled"> 203 <div guest-visibility="disabled">
204 <label for="timezone-select" class="option-name" 204 <label for="timezone-select" class="option-name"
205 i18n-content="timezone"></label> 205 i18n-content="timezone"></label>
206 <div id="timezone-value"> 206 <div id="timezone-value">
207 <select id="timezone-select" class="control" 207 <select id="timezone-select" class="control"
208 i18n-options="timezoneList" data-type="string" 208 i18n-options="timezoneList" data-type="string"
209 pref="cros.system.timezone"> 209 pref="cros.system.timezone">
210 </select> 210 </select>
211 </div> 211 </div>
212 </div> 212 </div>
213 <div class="checkbox"> 213 <div class="checkbox settings-row">
214 <label> 214 <label>
215 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" 215 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock"
216 type="checkbox"> 216 type="checkbox">
217 <span i18n-content="use24HourClock"></span> 217 <span i18n-content="use24HourClock"></span>
218 </label> 218 </label>
219 </div> 219 </div>
220 <div id="time-synced-explanation" class="settings-row"
221 i18n-content="timeSyncedExplanation"></div>
222 <div class="settings-row" id="set-time" hidden>
223 <button id="set-time-button"
224 i18n-content="setTimeButton"></button>
225 </div>
226
Dan Beam 2014/04/23 17:51:45 remove \n
michaelpg 2014/04/24 01:32:23 Done.
220 </div> 227 </div>
221 </section> 228 </section>
222 229
223 <section id="security-section" hidden> 230 <section id="security-section" hidden>
224 <h3 i18n-content="securityTitle"></h3> 231 <h3 i18n-content="securityTitle"></h3>
225 <div class="settings-row"> 232 <div class="settings-row">
226 <span i18n-content="consumerManagementEnrollDescription"></span> 233 <span i18n-content="consumerManagementEnrollDescription"></span>
227 </div> 234 </div>
228 <div class="settings-row"> 235 <div class="settings-row">
229 <button id="consumer-management-enroll-button" 236 <button id="consumer-management-enroll-button"
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 </div> 933 </div>
927 </section> 934 </section>
928 </div> <!-- advanced-settings-container --> 935 </div> <!-- advanced-settings-container -->
929 </div> <!-- advanced-settings --> 936 </div> <!-- advanced-settings -->
930 <footer> 937 <footer>
931 <button id="advanced-settings-expander" class="link-button" 938 <button id="advanced-settings-expander" class="link-button"
932 i18n-content="showAdvancedSettings"> 939 i18n-content="showAdvancedSettings">
933 </button> 940 </button>
934 </footer> 941 </footer>
935 </div> 942 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698