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

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

Issue 2393703005: MD Settings: Date and Time page, part 1/3 (Closed)
Patch Set: . Created 4 years, 2 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-ui' implements the UI for the Settings page. 7 * 'settings-ui' implements the UI for the Settings page.
8 * 8 *
9 * Example: 9 * Example:
10 * 10 *
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 </if> 82 </if>
83 <if expr="chromeos"> 83 <if expr="chromeos">
84 appearance: { 84 appearance: {
85 setWallpaper: false, 85 setWallpaper: false,
86 setTheme: false, 86 setTheme: false,
87 homeButton: false, 87 homeButton: false,
88 bookmarksBar: false, 88 bookmarksBar: false,
89 pageZoom: false, 89 pageZoom: false,
90 }, 90 },
91 advancedSettings: true, 91 advancedSettings: true,
92 dateTime: {
93 timeZoneSelector: false,
94 },
95 privacy: { 92 privacy: {
96 searchPrediction: false, 93 searchPrediction: false,
97 networkPrediction: false, 94 networkPrediction: false,
98 }, 95 },
99 passwordsAndForms: false, 96 passwordsAndForms: false,
100 downloads: { 97 downloads: {
101 googleDrive: false, 98 googleDrive: false,
102 }, 99 },
103 </if> 100 </if>
104 }; 101 };
(...skipping 19 matching lines...) Expand all
124 onMenuButtonTap_: function() { 121 onMenuButtonTap_: function() {
125 this.$$('app-drawer').toggle(); 122 this.$$('app-drawer').toggle();
126 }, 123 },
127 124
128 /** @private */ 125 /** @private */
129 directionDelegateChanged_: function() { 126 directionDelegateChanged_: function() {
130 this.$$('app-drawer').align = this.directionDelegate.isRtl() ? 127 this.$$('app-drawer').align = this.directionDelegate.isRtl() ?
131 'right' : 'left'; 128 'right' : 'left';
132 }, 129 },
133 }); 130 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698