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

Unified Diff: chrome/browser/sync/engine/auth_watcher.h

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
« no previous file with comments | « no previous file | chrome/browser/sync/engine/auth_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/engine/auth_watcher.h
diff --git a/chrome/browser/sync/engine/auth_watcher.h b/chrome/browser/sync/engine/auth_watcher.h
index 7ae3f9883dd9b35b5b6ae51010f1ed4349bd2157..56491363d816df157a18974b76e64612b6e2314f 100644
--- a/chrome/browser/sync/engine/auth_watcher.h
+++ b/chrome/browser/sync/engine/auth_watcher.h
@@ -111,12 +111,11 @@ class AuthWatcher : public base::RefCountedThreadSafe<AuthWatcher> {
// convenience in the common case so the token doesn't have to be plumbed
// everywhere.
void Authenticate(const std::string& email, const std::string& password,
- const std::string& captcha_token, const std::string& captcha_value,
- bool persist_creds_to_disk);
+ const std::string& captcha_token, const std::string& captcha_value);
void Authenticate(const std::string& email, const std::string& password,
bool persist_creds_to_disk) {
- Authenticate(email, password, "", "", persist_creds_to_disk);
+ Authenticate(email, password, "", "");
}
// Use this to update only the token of the current email address.
@@ -150,8 +149,7 @@ class AuthWatcher : public base::RefCountedThreadSafe<AuthWatcher> {
void HandleServerConnectionEvent(const ServerConnectionEvent& event);
void SaveUserSettings(const std::string& username,
- const std::string& auth_token,
- const bool save_credentials);
+ const std::string& auth_token);
MessageLoop* message_loop() { return auth_backend_thread_.message_loop(); }
« no previous file with comments | « no previous file | chrome/browser/sync/engine/auth_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698