summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-13 19:40:07 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-13 19:40:07 +0000
commit51748d266bd3558ec1ee508340cdc9d554ea55f5 (patch)
tree2641f4ead0c27432b0fa129ccd6e4f31b7ee8833 /chrome/browser/sync
parentd9d42998427a6204ddbc5929acc5e4c13c939b07 (diff)
downloadchromium_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.cc2
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()) {