Chromium Code Reviews| Index: chrome/browser/resources/settings/people_page/sync_browser_proxy.js |
| diff --git a/chrome/browser/resources/settings/people_page/sync_browser_proxy.js b/chrome/browser/resources/settings/people_page/sync_browser_proxy.js |
| index 572dcb4f9c04bd9ee3d49f9f89f2bac1eba626f4..e0756117bae2951dc0b1a977f6361a74ed9ba1f1 100644 |
| --- a/chrome/browser/resources/settings/people_page/sync_browser_proxy.js |
| +++ b/chrome/browser/resources/settings/people_page/sync_browser_proxy.js |
| @@ -35,11 +35,14 @@ settings.SyncStatus; |
| * @enum {string} |
| */ |
| settings.StatusAction = { |
| - NO_ACTION: 'noAction', // No action to take. |
| - REAUTHENTICATE: 'reauthenticate', // User needs to reauthenticate. |
| - SIGNOUT_AND_SIGNIN: 'signOutAndSignIn', // User needs to sign out and sign in. |
| - UPGRADE_CLIENT: 'upgradeClient', // User needs to upgrade the client. |
| - ENTER_PASSPHRASE: 'enterPassphrase', // User needs to enter passphrase. |
| + NO_ACTION: 'noAction', // No action to take. |
| + REAUTHENTICATE: 'reauthenticate', // User needs to reauthenticate. |
| + SIGNOUT_AND_SIGNIN: |
| + 'signOutAndSignIn', // User needs to sign out and sign in. |
| + UPGRADE_CLIENT: 'upgradeClient', // User needs to upgrade the client. |
| + ENTER_PASSPHRASE: 'enterPassphrase', // User needs to enter passphrase. |
| + // User needs to confirm sync settings. |
| + CONFIRM_SYNC_SETTINGS: 'confirmSyncSettings', |
|
tommycli
2017/06/12 18:47:00
Nit again: Looking above at SIGNOUT_AND_SIGNIN, it
tommycli
2017/06/12 18:47:23
*follow that.
Patrick Noland
2017/06/12 18:55:53
Done.
|
| }; |
| /** |