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

Unified Diff: components/signin/core/browser/signin_manager.cc

Issue 2712883005: Sign out profile when local_state file has been changed. (Closed)
Patch Set: Merge from master Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/signin/core/browser/signin_client.cc ('k') | components/signin/core/browser/signin_metrics.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/signin/core/browser/signin_manager.cc
diff --git a/components/signin/core/browser/signin_manager.cc b/components/signin/core/browser/signin_manager.cc
index 27fce040ba6e1bc54819a677321cfd9f70b973b1..d27931d6a30ecd4ce49cf38842a5d04a20a7bdb7 100644
--- a/components/signin/core/browser/signin_manager.cc
+++ b/components/signin/core/browser/signin_manager.cc
@@ -149,9 +149,10 @@ void SigninManager::HandleAuthError(const GoogleServiceAuthError& error) {
void SigninManager::SignOut(
signin_metrics::ProfileSignout signout_source_metric,
signin_metrics::SignoutDelete signout_delete_metric) {
- client_->PreSignOut(base::Bind(&SigninManager::DoSignOut,
- base::Unretained(this), signout_source_metric,
- signout_delete_metric));
+ client_->PreSignOut(
+ base::Bind(&SigninManager::DoSignOut, base::Unretained(this),
+ signout_source_metric, signout_delete_metric),
+ signout_source_metric);
}
void SigninManager::DoSignOut(
« no previous file with comments | « components/signin/core/browser/signin_client.cc ('k') | components/signin/core/browser/signin_metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698