| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/signin/core/browser/signin_manager.h" | 5 #include "components/signin/core/browser/signin_manager.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 ClearTransientSigninData(); | 202 ClearTransientSigninData(); |
| 203 | 203 |
| 204 const std::string account_id = GetAuthenticatedAccountId(); | 204 const std::string account_id = GetAuthenticatedAccountId(); |
| 205 const std::string username = GetAuthenticatedUsername(); | 205 const std::string username = GetAuthenticatedUsername(); |
| 206 const base::Time signin_time = | 206 const base::Time signin_time = |
| 207 base::Time::FromInternalValue( | 207 base::Time::FromInternalValue( |
| 208 client_->GetPrefs()->GetInt64(prefs::kSignedInTime)); | 208 client_->GetPrefs()->GetInt64(prefs::kSignedInTime)); |
| 209 clear_authenticated_username(); | 209 clear_authenticated_username(); |
| 210 client_->GetPrefs()->ClearPref(prefs::kGoogleServicesUsername); | 210 client_->GetPrefs()->ClearPref(prefs::kGoogleServicesUsername); |
| 211 client_->GetPrefs()->ClearPref(prefs::kSignedInTime); | 211 client_->GetPrefs()->ClearPref(prefs::kSignedInTime); |
| 212 client_->ClearSigninScopedDeviceId(); | 212 client_->ClearSigninClientPrefs(); |
| 213 | 213 |
| 214 // Erase (now) stale information from AboutSigninInternals. | 214 // Erase (now) stale information from AboutSigninInternals. |
| 215 NotifyDiagnosticsObservers(USERNAME, ""); | 215 NotifyDiagnosticsObservers(USERNAME, ""); |
| 216 | 216 |
| 217 // Determine the duration the user was logged in and log that to UMA. | 217 // Determine the duration the user was logged in and log that to UMA. |
| 218 if (!signin_time.is_null()) { | 218 if (!signin_time.is_null()) { |
| 219 base::TimeDelta signed_in_duration = base::Time::Now() - signin_time; | 219 base::TimeDelta signed_in_duration = base::Time::Now() - signin_time; |
| 220 UMA_HISTOGRAM_COUNTS("Signin.SignedInDurationBeforeSignout", | 220 UMA_HISTOGRAM_COUNTS("Signin.SignedInDurationBeforeSignout", |
| 221 signed_in_duration.InMinutes()); | 221 signed_in_duration.InMinutes()); |
| 222 } | 222 } |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 | 389 |
| 390 password_.clear(); // Don't need it anymore. | 390 password_.clear(); // Don't need it anymore. |
| 391 DisableOneClickSignIn(client_->GetPrefs()); // Don't ever offer again. | 391 DisableOneClickSignIn(client_->GetPrefs()); // Don't ever offer again. |
| 392 } | 392 } |
| 393 | 393 |
| 394 void SigninManager::ProhibitSignout(bool prohibit_signout) { | 394 void SigninManager::ProhibitSignout(bool prohibit_signout) { |
| 395 prohibit_signout_ = prohibit_signout; | 395 prohibit_signout_ = prohibit_signout; |
| 396 } | 396 } |
| 397 | 397 |
| 398 bool SigninManager::IsSignoutProhibited() const { return prohibit_signout_; } | 398 bool SigninManager::IsSignoutProhibited() const { return prohibit_signout_; } |
| OLD | NEW |