| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "components/password_manager/content/browser/content_password_manager_d
river.h" | 10 #include "components/password_manager/content/browser/content_password_manager_d
river.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 public content::WebContentsUserData<ChromePasswordManagerClient> { | 36 public content::WebContentsUserData<ChromePasswordManagerClient> { |
| 37 public: | 37 public: |
| 38 virtual ~ChromePasswordManagerClient(); | 38 virtual ~ChromePasswordManagerClient(); |
| 39 | 39 |
| 40 // PasswordManagerClient implementation. | 40 // PasswordManagerClient implementation. |
| 41 virtual bool IsAutomaticPasswordSavingEnabled() const OVERRIDE; | 41 virtual bool IsAutomaticPasswordSavingEnabled() const OVERRIDE; |
| 42 virtual void PromptUserToSavePassword( | 42 virtual void PromptUserToSavePassword( |
| 43 password_manager::PasswordFormManager* form_to_save) OVERRIDE; | 43 password_manager::PasswordFormManager* form_to_save) OVERRIDE; |
| 44 virtual void PasswordWasAutofilled( | 44 virtual void PasswordWasAutofilled( |
| 45 const autofill::PasswordFormMap& best_matches) const OVERRIDE; | 45 const autofill::PasswordFormMap& best_matches) const OVERRIDE; |
| 46 virtual void PasswordAutofillWasBlocked() const OVERRIDE; | 46 virtual void PasswordAutofillWasBlocked( |
| 47 const autofill::PasswordFormMap& best_matches) const OVERRIDE; |
| 47 virtual void AuthenticateAutofillAndFillForm( | 48 virtual void AuthenticateAutofillAndFillForm( |
| 48 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE; | 49 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE; |
| 49 virtual PrefService* GetPrefs() OVERRIDE; | 50 virtual PrefService* GetPrefs() OVERRIDE; |
| 50 virtual password_manager::PasswordStore* GetPasswordStore() OVERRIDE; | 51 virtual password_manager::PasswordStore* GetPasswordStore() OVERRIDE; |
| 51 virtual password_manager::PasswordManagerDriver* GetDriver() OVERRIDE; | 52 virtual password_manager::PasswordManagerDriver* GetDriver() OVERRIDE; |
| 52 virtual base::FieldTrial::Probability GetProbabilityForExperiment( | 53 virtual base::FieldTrial::Probability GetProbabilityForExperiment( |
| 53 const std::string& experiment_name) OVERRIDE; | 54 const std::string& experiment_name) OVERRIDE; |
| 54 virtual bool IsPasswordSyncEnabled() OVERRIDE; | 55 virtual bool IsPasswordSyncEnabled() OVERRIDE; |
| 55 virtual void SetLogger(password_manager::PasswordManagerLogger* logger) | 56 virtual void SetLogger(password_manager::PasswordManagerLogger* logger) |
| 56 OVERRIDE; | 57 OVERRIDE; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 123 |
| 123 // Points to an active logger instance to use for, e.g., reporting progress on | 124 // Points to an active logger instance to use for, e.g., reporting progress on |
| 124 // saving passwords. If there is no active logger (most of the time), the | 125 // saving passwords. If there is no active logger (most of the time), the |
| 125 // pointer will be NULL. | 126 // pointer will be NULL. |
| 126 password_manager::PasswordManagerLogger* logger_; | 127 password_manager::PasswordManagerLogger* logger_; |
| 127 | 128 |
| 128 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); | 129 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); |
| 129 }; | 130 }; |
| 130 | 131 |
| 131 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 132 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| OLD | NEW |