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

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client.h

Issue 1735013004: CREDENTIAL: Only toggle 'skip_zero_click' state if API is used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 10 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/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/chrome_password_manager_client.h
diff --git a/chrome/browser/password_manager/chrome_password_manager_client.h b/chrome/browser/password_manager/chrome_password_manager_client.h
index 97b2d4050161ca4c1f4b53da8222a603448e54f7..3f5fca766297f379def76c629ea37b841b780c54 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client.h
+++ b/chrome/browser/password_manager/chrome_password_manager_client.h
@@ -62,7 +62,7 @@ class ChromePasswordManagerClient
void GeneratePassword() override;
void NotifyUserAutoSignin(
ScopedVector<autofill::PasswordForm> local_forms) override;
- void NotifyUserAutoSigninBlockedOnFirstRun(
+ void NotifyUserCouldBeAutoSignedIn(
scoped_ptr<autofill::PasswordForm> form) override;
void NotifySuccessfulLoginWithExistingPassword(
const autofill::PasswordForm& form) override;
@@ -181,9 +181,9 @@ class ChromePasswordManagerClient
scoped_ptr<password_manager::LogManager> log_manager_;
- // Set during 'NotifyUserAutoSigninBlockedOnFirstRun' in order to store the
+ // Set during 'NotifyUserCouldBeAutoSignedIn' in order to store the
// form for potential use during 'NotifySuccessfulLoginWithExistingPassword'.
- scoped_ptr<autofill::PasswordForm> form_blocked_on_first_run_;
+ scoped_ptr<autofill::PasswordForm> possible_auto_sign_in_;
DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient);
};
« no previous file with comments | « no previous file | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698