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

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

Issue 2964293002: CrOS Settings: Add skeleton page for multidevice section. (Closed)
Patch Set: Sync and rebase 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: (boolean|undefined|DownloadsPageVisibility), 12 * downloads: (boolean|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: (boolean|undefined|PrivacyPageVisibility), 17 * privacy: (boolean|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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 pageZoom: false, 90 pageZoom: false,
90 }, 91 },
91 advancedSettings: true, 92 advancedSettings: true,
92 privacy: { 93 privacy: {
93 searchPrediction: false, 94 searchPrediction: false,
94 networkPrediction: false, 95 networkPrediction: false,
95 }, 96 },
96 downloads: { 97 downloads: {
97 googleDrive: false, 98 googleDrive: false,
98 }, 99 },
100 multidevice: false,
99 }; 101 };
100 // </if> 102 // </if>
101 } 103 }
102 104
103 return {pageVisibility: pageVisibility}; 105 return {pageVisibility: pageVisibility};
104 }); 106 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/multidevice_page/multidevice_page.js ('k') | chrome/browser/resources/settings/route.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698