| OLD | NEW |
| 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 Loading... |
| 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 }); |
| OLD | NEW |