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

Unified Diff: chrome/browser/sync/engine/authenticator.cc

Issue 2124020: Remove signin and persist from gaia_authenticator. (Closed)
Patch Set: final upload Created 10 years, 7 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
Index: chrome/browser/sync/engine/authenticator.cc
diff --git a/chrome/browser/sync/engine/authenticator.cc b/chrome/browser/sync/engine/authenticator.cc
index f8b3ce1d6ed2a58318fdf39311f3aa3333b21afb..479be99cbe3910ee1f5b19a9baf5c6ea5f479651 100644
--- a/chrome/browser/sync/engine/authenticator.cc
+++ b/chrome/browser/sync/engine/authenticator.cc
@@ -30,16 +30,13 @@ Authenticator::AuthenticationResult Authenticator::Authenticate() {
}
Authenticator::AuthenticationResult Authenticator::Authenticate(
- string username, string password, bool save_credentials) {
+ string username, string password) {
// TODO(sync): need to figure out if this routine is used anywhere other
// than the test code.
gaia::GaiaAuthenticator auth_service("ChromiumBrowser", "chromiumsync",
"https://www.google.com:443/accounts/ClientLogin");
auth_service.set_message_loop(MessageLoop::current());
- const gaia::SignIn signin_type =
- settings_->RecallSigninType(username, gaia::GMAIL_SIGNIN);
- if (!auth_service.Authenticate(username, password, gaia::SAVE_IN_MEMORY_ONLY,
- signin_type)) {
+ if (!auth_service.Authenticate(username, password)) {
return UNSPECIFIC_ERROR_RETURN;
}
CHECK(!auth_service.auth_token().empty());
« no previous file with comments | « chrome/browser/sync/engine/authenticator.h ('k') | chrome/browser/sync/engine/net/server_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698