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

Unified Diff: chrome/browser/resources/settings/date_time_page/date_time_page.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/date_time_page/date_time_page.js
diff --git a/chrome/browser/resources/settings/date_time_page/date_time_page.js b/chrome/browser/resources/settings/date_time_page/date_time_page.js
new file mode 100644
index 0000000000000000000000000000000000000000..c7044b4bca082a5ab65aad27002505aede3276b9
--- /dev/null
+++ b/chrome/browser/resources/settings/date_time_page/date_time_page.js
@@ -0,0 +1,31 @@
+/* Copyright 2015 The Chromium Authors. All rights reserved.
michaelpg 2015/03/08 05:57:08 nit: c++-style //
Oren Blasberg 2015/03/10 01:25:01 Done.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+/**
+ * @fileoverview
+ * 'cr-settings-date-time-page' is the settings page containing all date-time
michaelpg 2015/03/08 05:57:08 nit: again "all" doesn't seem right here
Oren Blasberg 2015/03/10 01:25:01 Done.
+ * settings.
+ *
+ * Example:
+ *
+ * <core-animated-pages>
+ * <cr-settings-date-time-page></cr-settings-date-time-page>
+ * ... other pages ...
+ * </core-animated-pages>
+ *
+ * @group Chrome Settings Elements
+ * @element cr-settings-date-time-page
+ */
+Polymer('cr-settings-date-time-page', {
+ publish: {
+ /**
+ * Preferences state.
+ *
+ * @attribute prefs
+ * @type CrSettingsPrefsElement
+ * @default null
+ */
+ prefs: null
michaelpg 2015/03/08 05:57:08 nit: trailing comma
Oren Blasberg 2015/03/10 01:25:01 Done.
+ },
+});

Powered by Google App Engine
This is Rietveld 408576698