| 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 A helper object used from the the People section to get the | 6 * @fileoverview A helper object used from the the People section to get the |
| 7 * status of the sync backend and user preferences on what data to sync. Used | 7 * status of the sync backend and user preferences on what data to sync. Used |
| 8 * for both Chrome browser and ChromeOS. | 8 * for both Chrome browser and ChromeOS. |
| 9 */ | 9 */ |
| 10 cr.exportPath('settings'); | 10 cr.exportPath('settings'); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 * extensionsEnforced: boolean, | 48 * extensionsEnforced: boolean, |
| 49 * extensionsRegistered: boolean, | 49 * extensionsRegistered: boolean, |
| 50 * extensionsSynced: boolean, | 50 * extensionsSynced: boolean, |
| 51 * fullEncryptionBody: string, | 51 * fullEncryptionBody: string, |
| 52 * passphrase: (string|undefined), | 52 * passphrase: (string|undefined), |
| 53 * passphraseRequired: boolean, | 53 * passphraseRequired: boolean, |
| 54 * passphraseTypeIsCustom: boolean, | 54 * passphraseTypeIsCustom: boolean, |
| 55 * passwordsEnforced: boolean, | 55 * passwordsEnforced: boolean, |
| 56 * passwordsRegistered: boolean, | 56 * passwordsRegistered: boolean, |
| 57 * passwordsSynced: boolean, | 57 * passwordsSynced: boolean, |
| 58 * paymentsIntegrationEnabled: boolean, |
| 58 * preferencesEnforced: boolean, | 59 * preferencesEnforced: boolean, |
| 59 * preferencesRegistered: boolean, | 60 * preferencesRegistered: boolean, |
| 60 * preferencesSynced: boolean, | 61 * preferencesSynced: boolean, |
| 61 * setNewPassphrase: (boolean|undefined), | 62 * setNewPassphrase: (boolean|undefined), |
| 62 * syncAllDataTypes: boolean, | 63 * syncAllDataTypes: boolean, |
| 63 * tabsEnforced: boolean, | 64 * tabsEnforced: boolean, |
| 64 * tabsRegistered: boolean, | 65 * tabsRegistered: boolean, |
| 65 * tabsSynced: boolean, | 66 * tabsSynced: boolean, |
| 66 * themesEnforced: boolean, | 67 * themesEnforced: boolean, |
| 67 * themesRegistered: boolean, | 68 * themesRegistered: boolean, |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 chrome.metricsPrivate.recordUserAction( | 208 chrome.metricsPrivate.recordUserAction( |
| 208 'Signin_AccountSettings_GoogleActivityControlsClicked'); | 209 'Signin_AccountSettings_GoogleActivityControlsClicked'); |
| 209 window.open(loadTimeData.getString('activityControlsUrl')); | 210 window.open(loadTimeData.getString('activityControlsUrl')); |
| 210 } | 211 } |
| 211 }; | 212 }; |
| 212 | 213 |
| 213 return { | 214 return { |
| 214 SyncBrowserProxyImpl: SyncBrowserProxyImpl, | 215 SyncBrowserProxyImpl: SyncBrowserProxyImpl, |
| 215 }; | 216 }; |
| 216 }); | 217 }); |
| OLD | NEW |