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

Side by Side Diff: chrome/browser/resources/settings/date_time_page/date_time_page.js

Issue 2106103006: MD Settings: cr/cros - Guest mode page visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after overscrollHeight_() fix Created 4 years, 4 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * 'settings-date-time-page' is the settings page containing date-time 7 * 'settings-date-time-page' is the settings page containing date-time
8 * settings. 8 * settings.
9 * 9 *
10 * Example: 10 * Example:
11 * 11 *
12 * <core-animated-pages> 12 * <core-animated-pages>
13 * <settings-date-time-page prefs="{{prefs}}"> 13 * <settings-date-time-page prefs="{{prefs}}">
14 * </settings-date-time-page> 14 * </settings-date-time-page>
15 * ... other pages ... 15 * ... other pages ...
16 * </core-animated-pages> 16 * </core-animated-pages>
17 */ 17 */
18 Polymer({ 18 Polymer({
19 is: 'settings-date-time-page', 19 is: 'settings-date-time-page',
20 20
21 properties: { 21 properties: {
22 /** 22 /**
23 * Preferences state. 23 * Preferences state.
24 */ 24 */
25 prefs: { 25 prefs: {
26 type: Object, 26 type: Object,
27 notify: true 27 notify: true
28 }, 28 },
29
30 /**
31 * Dictionary defining page visibility.
32 * @type {!DateTimePageVisibility}
33 */
34 pageVisibility: Object,
29 }, 35 },
30 }); 36 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698