diff options
author | albertb@google.com <albertb@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 21:13:30 +0000 |
---|---|---|
committer | albertb@google.com <albertb@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 21:13:30 +0000 |
commit | 595fbb4e449423faa19cbf9533d980bd2b100479 (patch) | |
tree | 4832d181a320fa696df9223348cdf9bd618e9aa5 /chrome/browser/defaults.cc | |
parent | 281e32a4405d515657c156d240b777d5a1cbb031 (diff) | |
download | chromium_src-595fbb4e449423faa19cbf9533d980bd2b100479.zip chromium_src-595fbb4e449423faa19cbf9533d980bd2b100479.tar.gz chromium_src-595fbb4e449423faa19cbf9533d980bd2b100479.tar.bz2 |
Update the kHasSyncSetupCompleted preference when the bootstraped
authentication is succesful in Chrome OS.
BUG=1220
TEST=The menu option in the wrench menu should indicate that bookmarks are
synced on startup, and it should be possible to disable sync through the
options dialog.
Review URL: http://codereview.chromium.org/551053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36783 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/defaults.cc')
-rw-r--r-- | chrome/browser/defaults.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/defaults.cc b/chrome/browser/defaults.cc index dee5bc5..a901949 100644 --- a/chrome/browser/defaults.cc +++ b/chrome/browser/defaults.cc @@ -23,6 +23,7 @@ const bool kShowAboutMenuItem = true; const bool kOSSupportsOtherBrowsers = false; const bool kDownloadPageHasShowInFolder = false; const bool kSizeTabButtonToTopOfTabStrip = true; +const bool kBootstrapSyncAuthentication = true; #elif defined(OS_LINUX) @@ -61,6 +62,7 @@ const bool kShowAboutMenuItem = true; #endif const bool kOSSupportsOtherBrowsers = true; const bool kSizeTabButtonToTopOfTabStrip = false; +const bool kBootstrapSyncAuthentication = false; #endif |