| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ | 5 #ifndef IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ |
| 6 #define IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ | 6 #define IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 const base::string16& password) override; | 62 const base::string16& password) override; |
| 63 void ShowInitialPasswordAccountSuggestions( | 63 void ShowInitialPasswordAccountSuggestions( |
| 64 const autofill::PasswordFormFillData& form_data) override; | 64 const autofill::PasswordFormFillData& form_data) override; |
| 65 void ClearPreviewedForm() override; | 65 void ClearPreviewedForm() override; |
| 66 password_manager::PasswordGenerationManager* GetPasswordGenerationManager() | 66 password_manager::PasswordGenerationManager* GetPasswordGenerationManager() |
| 67 override; | 67 override; |
| 68 password_manager::PasswordManager* GetPasswordManager() override; | 68 password_manager::PasswordManager* GetPasswordManager() override; |
| 69 password_manager::PasswordAutofillManager* GetPasswordAutofillManager() | 69 password_manager::PasswordAutofillManager* GetPasswordAutofillManager() |
| 70 override; | 70 override; |
| 71 void ForceSavePassword() override; | 71 void ForceSavePassword() override; |
| 72 autofill::AutofillDriver* GetAutofillDriver() override; |
| 72 | 73 |
| 73 private: | 74 private: |
| 74 id<PasswordManagerDriverDelegate> delegate_; // (weak) | 75 id<PasswordManagerDriverDelegate> delegate_; // (weak) |
| 75 | 76 |
| 76 DISALLOW_COPY_AND_ASSIGN(IOSChromePasswordManagerDriver); | 77 DISALLOW_COPY_AND_ASSIGN(IOSChromePasswordManagerDriver); |
| 77 }; | 78 }; |
| 78 | 79 |
| 79 #endif // IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ | 80 #endif // IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_DRIVER_H_ |
| OLD | NEW |