Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: components/signin/core/browser/signin_manager.cc

Issue 566933005: Do not display lock for hosted domains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change to a hosted domain preference. Fix unit tests. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_; }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698