diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-16 23:30:08 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-16 23:30:08 +0000 |
commit | 0cc5af1e63cd0b4829df26e13b1d4ec0246f6d5f (patch) | |
tree | 81eda230ca4a1713aa8c07fe2de6387e1bcfb04b /chrome/browser/defaults.h | |
parent | aaa20bde39ef30c762b0430913a0fa99d39e3a81 (diff) | |
download | chromium_src-0cc5af1e63cd0b4829df26e13b1d4ec0246f6d5f.zip chromium_src-0cc5af1e63cd0b4829df26e13b1d4ec0246f6d5f.tar.gz chromium_src-0cc5af1e63cd0b4829df26e13b1d4ec0246f6d5f.tar.bz2 |
sync: remove cros_user parameter from ProfileSyncService
Instead use SigninManager to store this information.
TBR=mirandac@chromium.org
BUG=88109,93922, 107160
TEST=most scenarios with CrOS UI displaying the username, including signin dialogs
Review URL: http://codereview.chromium.org/8910003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/defaults.h')
-rw-r--r-- | chrome/browser/defaults.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/defaults.h b/chrome/browser/defaults.h index e06f008..b112899 100644 --- a/chrome/browser/defaults.h +++ b/chrome/browser/defaults.h @@ -56,9 +56,11 @@ extern const bool kDownloadPageHasShowInFolder; // Should the tab strip be sized to the top of the tab strip? extern const bool kSizeTabButtonToTopOfTabStrip; -// Whether we should bootstrap the sync authentication using cookies instead of -// asking the user for credentials. -extern const bool kBootstrapSyncAuthentication; +// If true, we want to automatically start sync signin whenever we have +// credentials (user doesn't need to go through the startup flow). This is +// typically enabled on platforms (like ChromeOS) that have their own +// distinct signin flow. +extern const bool kSyncAutoStarts; // Should other browsers be shown in about:memory page? extern const bool kShowOtherBrowsersInAboutMemory; |