| 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 * @fileoverview Closure typedefs for settings_ui. | 6 * @fileoverview Closure typedefs for settings_ui. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Specifies page visibility in guest mode in cr and cros. | 10 * Specifies page visibility in guest mode in cr and cros. |
| 11 * @typedef {{ | 11 * @typedef {{ |
| 12 * advancedSettings: (boolean|undefined), | 12 * advancedSettings: (boolean|undefined), |
| 13 * androidApps: (boolean|undefined), |
| 13 * appearance: (boolean|undefined|AppearancePageVisibility), | 14 * appearance: (boolean|undefined|AppearancePageVisibility), |
| 14 * dateTime: (boolean|undefined|DateTimePageVisibility), | 15 * dateTime: (boolean|undefined|DateTimePageVisibility), |
| 15 * defaultBrowser: (boolean|undefined), | 16 * defaultBrowser: (boolean|undefined), |
| 16 * downloads: (undefined|DownloadsPageVisibility), | 17 * downloads: (undefined|DownloadsPageVisibility), |
| 17 * onStartup: (boolean|undefined), | 18 * onStartup: (boolean|undefined), |
| 18 * passwordsAndForms: (boolean|undefined), | 19 * passwordsAndForms: (boolean|undefined), |
| 19 * people: (boolean|undefined), | 20 * people: (boolean|undefined), |
| 20 * privacy: (undefined|PrivacyPageVisibility), | 21 * privacy: (undefined|PrivacyPageVisibility), |
| 21 * reset:(boolean|undefined), | 22 * reset:(boolean|undefined), |
| 22 * }} | 23 * }} |
| (...skipping 28 matching lines...) Expand all Loading... |
| 51 /** | 52 /** |
| 52 * @typedef {{ | 53 * @typedef {{ |
| 53 * networkPrediction: boolean, | 54 * networkPrediction: boolean, |
| 54 * searchPrediction: boolean, | 55 * searchPrediction: boolean, |
| 55 * }} | 56 * }} |
| 56 */ | 57 */ |
| 57 var PrivacyPageVisibility; | 58 var PrivacyPageVisibility; |
| 58 | 59 |
| 59 // TODO(mahmadi): Dummy code for closure compiler to process this file. | 60 // TODO(mahmadi): Dummy code for closure compiler to process this file. |
| 60 (function foo() {})(); | 61 (function foo() {})(); |
| OLD | NEW |