| 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 ccab0ed889b6a91e57faf6bfb7e557dfbab87a5b..a93a68bc0140528e3050464613ea671e92757ab6 100644
|
| --- a/chrome/browser/password_manager/chrome_password_manager_client.h
|
| +++ b/chrome/browser/password_manager/chrome_password_manager_client.h
|
| @@ -25,6 +25,7 @@ class WebContents;
|
| }
|
|
|
| namespace password_manager {
|
| +struct CredentialInfo;
|
| class PasswordGenerationManager;
|
| class PasswordManager;
|
| }
|
| @@ -65,6 +66,17 @@ class ChromePasswordManagerClient
|
| virtual void OnLogRouterAvailabilityChanged(bool router_can_be_used) OVERRIDE;
|
| virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE;
|
| virtual bool IsLoggingActive() const OVERRIDE;
|
| + virtual void OnNotifyFailedSignIn(
|
| + int request_id,
|
| + const password_manager::CredentialInfo&) OVERRIDE;
|
| + virtual void OnNotifySignedIn(
|
| + int request_id,
|
| + const password_manager::CredentialInfo&) OVERRIDE;
|
| + virtual void OnNotifySignedOut(int request_id) OVERRIDE;
|
| + virtual void OnRequestCredential(
|
| + int request_id,
|
| + bool zero_click_only,
|
| + const std::vector<GURL>& federations) OVERRIDE;
|
|
|
| // Hides any visible generation UI.
|
| void HidePasswordGenerationPopup();
|
|
|