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

Unified Diff: chrome/browser/resources/settings/prefs/prefs_types.js

Issue 990473002: Add initial implementation of date-time-settings MD settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up a couple things Created 5 years, 9 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
Index: chrome/browser/resources/settings/prefs/prefs_types.js
diff --git a/chrome/browser/resources/settings/prefs/prefs_types.js b/chrome/browser/resources/settings/prefs/prefs_types.js
index 78b3fd45e6f32ed7e279b2986d71805a540e391d..125d577089570228efb92e665e81cc4b0688ffe0 100644
--- a/chrome/browser/resources/settings/prefs/prefs_types.js
+++ b/chrome/browser/resources/settings/prefs/prefs_types.js
@@ -12,6 +12,7 @@ var CrSettingsPrefs = {};
* @typedef {{
* a11y: CrSettingsPrefs.A11y,
* touchpad: CrSettingsPrefs.Touchpad,
+ * dateTime: CrSettingsPrefs.DateTime,
* accessibility: boolean
* }}
*/
@@ -37,3 +38,11 @@ CrSettingsPrefs.A11y;
* }}
*/
CrSettingsPrefs.Touchpad;
+
+/**
+ * @typedef {{
+ * timezone: string
+ * use24HourClock: boolean
+ * }}
+ */
+CrSettingsPrefs.DateTime;

Powered by Google App Engine
This is Rietveld 408576698