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

Unified Diff: chrome/browser/resources/chromeos/set_time.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: rebase, single quotes in browsertest js 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/set_time.css ('k') | chrome/browser/resources/chromeos/set_time.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/set_time.html
diff --git a/chrome/browser/resources/chromeos/set_time.html b/chrome/browser/resources/chromeos/set_time.html
new file mode 100644
index 0000000000000000000000000000000000000000..590f47e7612dea08e3a6e389249291086558d43b
--- /dev/null
+++ b/chrome/browser/resources/chromeos/set_time.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection;">
+<head>
+<meta charset="utf-8">
+<title i18n-content="setTimeTitle"></title>
+
+<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+<link rel="stylesheet" href="set_time.css">
+</head>
+
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+<form id="set-time">
+ <h2 i18n-content="setTimeTitle"></h2>
+ <p id="prompt" i18n-content="prompt" class="row"></p>
+
+ <div class="timeControl">
+ <input id="date" type="date" i18n-values="title:dateLabel">
+ <input id="time" type="time" i18n-values="title:timeLabel">
+ </div>
+
+ <div id="timezone" class="row" hidden>
+ <label id="timezone-label" for="timezone-select" i18n-content="timezone">
+ </label>
+ <select id="timezone-select" i18n-options="timezoneList"></select>
+ </div>
+
+ <div class="button-strip">
+ <button id="done" type="submit" i18n-content="doneButton"></button>
+ </div>
+</form>
+
+<script src="chrome://resources/js/cr.js"></script>
+<script src="chrome://resources/js/load_time_data.js"></script>
+<script src="chrome://resources/js/util.js"></script>
+<script src="strings.js"></script>
+<script src="set_time.js"></script>
+<script src="chrome://resources/js/i18n_template2.js"></script>
+</body>
+</html>
« no previous file with comments | « chrome/browser/resources/chromeos/set_time.css ('k') | chrome/browser/resources/chromeos/set_time.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698