| 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 1565545b12bc0ccbec16492710a706eacb54ed46..d75a7383d9104e235e13dfca702494f4b6fecd33 100644
|
| --- a/chrome/browser/password_manager/chrome_password_manager_client.h
|
| +++ b/chrome/browser/password_manager/chrome_password_manager_client.h
|
| @@ -68,9 +68,6 @@ class ChromePasswordManagerClient
|
| PrefService* GetPrefs() override;
|
| password_manager::PasswordStore* GetPasswordStore() const override;
|
| password_manager::PasswordSyncState GetPasswordSyncState() const override;
|
| - void OnLogRouterAvailabilityChanged(bool router_can_be_used) override;
|
| - void LogSavePasswordProgress(const std::string& text) const override;
|
| - bool IsLoggingActive() const override;
|
| bool WasLastNavigationHTTPError() const override;
|
| bool DidLastPageLoadEncounterSSLErrors() const override;
|
| bool IsOffTheRecord() const override;
|
| @@ -81,6 +78,8 @@ class ChromePasswordManagerClient
|
| const GURL& GetLastCommittedEntryURL() const override;
|
| const password_manager::CredentialsFilter* GetStoreResultFilter()
|
| const override;
|
| + password_manager::LogRouter* GetLogRouter() const override;
|
| + void NotifyDriversAboutLoggingAvailability(bool is_available) override;
|
|
|
| // Hides any visible generation UI.
|
| void HidePasswordGenerationPopup();
|
| @@ -137,10 +136,6 @@ class ChromePasswordManagerClient
|
| // for UMA stats.
|
| void GenerationAvailableForForm(const autofill::PasswordForm& form);
|
|
|
| - // Sends a message to the renderer with the current value of
|
| - // |can_use_log_router_|.
|
| - void NotifyRendererOfLoggingAvailability();
|
| -
|
| Profile* const profile_;
|
|
|
| password_manager::PasswordManager password_manager_;
|
| @@ -157,9 +152,6 @@ class ChromePasswordManagerClient
|
| base::WeakPtr<
|
| autofill::PasswordGenerationPopupControllerImpl> popup_controller_;
|
|
|
| - // True if |this| is registered with some LogRouter which can accept logs.
|
| - bool can_use_log_router_;
|
| -
|
| // Set to false to disable password saving (will no longer ask if you
|
| // want to save passwords and also won't fill the passwords).
|
| BooleanPrefMember saving_and_filling_passwords_enabled_;
|
|
|