| 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ |
| 7 | 7 |
| 8 #include "components/password_manager/core/browser/password_manager_driver.h" | 8 #include "components/password_manager/core/browser/password_manager_driver.h" |
| 9 | 9 |
| 10 namespace password_manager { | 10 namespace password_manager { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 void FillPasswordForm( | 21 void FillPasswordForm( |
| 22 const autofill::PasswordFormFillData& form_data) override; | 22 const autofill::PasswordFormFillData& form_data) override; |
| 23 void AllowPasswordGenerationForForm( | 23 void AllowPasswordGenerationForForm( |
| 24 const autofill::PasswordForm& form) override; | 24 const autofill::PasswordForm& form) override; |
| 25 void AccountCreationFormsFound( | 25 void AccountCreationFormsFound( |
| 26 const std::vector<autofill::FormData>& forms) override; | 26 const std::vector<autofill::FormData>& forms) override; |
| 27 void GeneratedPasswordAccepted(const base::string16& password) override; | 27 void GeneratedPasswordAccepted(const base::string16& password) override; |
| 28 void FillSuggestion(const base::string16& username, | 28 void FillSuggestion(const base::string16& username, |
| 29 const base::string16& password) override; | 29 const base::string16& password) override; |
| 30 void PreviewSuggestion(const base::string16& username, | 30 void PreviewSuggestion(const base::string16& username, |
| 31 const base::string16& password) override; | 31 const base::string16& password, |
| 32 size_t match_start) override; |
| 32 void ClearPreviewedForm() override; | 33 void ClearPreviewedForm() override; |
| 33 PasswordGenerationManager* GetPasswordGenerationManager() override; | 34 PasswordGenerationManager* GetPasswordGenerationManager() override; |
| 34 PasswordManager* GetPasswordManager() override; | 35 PasswordManager* GetPasswordManager() override; |
| 35 PasswordAutofillManager* GetPasswordAutofillManager() override; | 36 PasswordAutofillManager* GetPasswordAutofillManager() override; |
| 36 | 37 |
| 37 private: | 38 private: |
| 38 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerDriver); | 39 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerDriver); |
| 39 }; | 40 }; |
| 40 | 41 |
| 41 } // namespace password_manager | 42 } // namespace password_manager |
| 42 | 43 |
| 43 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER
_H_ | 44 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER
_H_ |
| OLD | NEW |