| Index: chrome/browser/resources/options/browser_options.js
|
| diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
|
| index c057e664676b66ad2ec28ab6b45d3225f547c714..eb49c37dd9b122df49c1a6d7bf19f4be5781cbc8 100644
|
| --- a/chrome/browser/resources/options/browser_options.js
|
| +++ b/chrome/browser/resources/options/browser_options.js
|
| @@ -868,8 +868,7 @@ cr.define('options', function() {
|
| // Disable the "sign in" button if we're currently signing in, or if we're
|
| // already signed in and signout is not allowed.
|
| var signInButton = $('start-stop-sync');
|
| - signInButton.disabled = syncData.setupInProgress ||
|
| - !syncData.signoutAllowed;
|
| + signInButton.disabled = syncData.setupInProgress;
|
| this.signoutAllowed_ = syncData.signoutAllowed;
|
| if (!syncData.signoutAllowed)
|
| $('start-stop-sync-indicator').setAttribute('controlled-by', 'policy');
|
|
|