diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-13 19:40:07 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-13 19:40:07 +0000 |
commit | 51748d266bd3558ec1ee508340cdc9d554ea55f5 (patch) | |
tree | 2641f4ead0c27432b0fa129ccd6e4f31b7ee8833 /chrome/browser/sync | |
parent | d9d42998427a6204ddbc5929acc5e4c13c939b07 (diff) | |
download | chromium_src-51748d266bd3558ec1ee508340cdc9d554ea55f5.zip chromium_src-51748d266bd3558ec1ee508340cdc9d554ea55f5.tar.gz chromium_src-51748d266bd3558ec1ee508340cdc9d554ea55f5.tar.bz2 |
Fixed == vs. = bug that screws up the Sync.ReauthorizationTime histogram.
BUG=40361
TEST=None
Review URL: http://codereview.chromium.org/3292020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59263 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r-- | chrome/browser/sync/profile_sync_service.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc index c352dce..a33aecf 100644 --- a/chrome/browser/sync/profile_sync_service.cc +++ b/chrome/browser/sync/profile_sync_service.cc @@ -561,7 +561,7 @@ void ProfileSyncService::UpdateAuthErrorState( wizard_.Step(AuthError::NONE == last_auth_error_.state() ? SyncSetupWizard::GAIA_SUCCESS : SyncSetupWizard::GAIA_LOGIN); } else { - auth_error_time_ == base::TimeTicks::Now(); + auth_error_time_ = base::TimeTicks::Now(); } if (!auth_start_time_.is_null()) { |