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

Side by Side Diff: chrome/browser/resources/settings/people_page/sync_browser_proxy.js

Issue 2068653003: Settings People Revamp: Add Payments integration to new Sync Settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 6 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 * @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
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
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 });
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/people_page/sync_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698