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

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

Issue 2964293002: CrOS Settings: Add skeleton page for multidevice section. (Closed)
Patch Set: Minor cleanups Created 3 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 * Specifies page visibility in guest mode in cr and cros. 6 * Specifies page visibility in guest mode in cr and cros.
7 * @typedef {{ 7 * @typedef {{
8 * advancedSettings: (boolean|undefined), 8 * advancedSettings: (boolean|undefined),
9 * appearance: (boolean|undefined|AppearancePageVisibility), 9 * appearance: (boolean|undefined|AppearancePageVisibility),
10 * dateTime: (boolean|undefined|DateTimePageVisibility), 10 * dateTime: (boolean|undefined|DateTimePageVisibility),
11 * defaultBrowser: (boolean|undefined), 11 * defaultBrowser: (boolean|undefined),
12 * downloads: (undefined|DownloadsPageVisibility), 12 * downloads: (undefined|DownloadsPageVisibility),
13 * multidevice: (boolean|undefined),
13 * onStartup: (boolean|undefined), 14 * onStartup: (boolean|undefined),
14 * passwordsAndForms: (boolean|undefined), 15 * passwordsAndForms: (boolean|undefined),
15 * people: (boolean|undefined), 16 * people: (boolean|undefined),
16 * privacy: (undefined|PrivacyPageVisibility), 17 * privacy: (undefined|PrivacyPageVisibility),
17 * reset:(boolean|undefined), 18 * reset:(boolean|undefined),
18 * }} 19 * }}
19 */ 20 */
20 var GuestModePageVisibility; 21 var GuestModePageVisibility;
21 22
22 /** 23 /**
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 pageZoom: false, 91 pageZoom: false,
91 }, 92 },
92 advancedSettings: true, 93 advancedSettings: true,
93 privacy: { 94 privacy: {
94 searchPrediction: false, 95 searchPrediction: false,
95 networkPrediction: false, 96 networkPrediction: false,
96 }, 97 },
97 downloads: { 98 downloads: {
98 googleDrive: false, 99 googleDrive: false,
99 }, 100 },
101 multidevice: false,
100 }; 102 };
101 // </if> 103 // </if>
102 } 104 }
103 105
104 return {pageVisibility: pageVisibility}; 106 return {pageVisibility: pageVisibility};
105 }); 107 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698