| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/i18n/rtl.h" | 9 #include "base/i18n/rtl.h" |
| 10 #include "components/autofill/core/browser/autofill_manager_delegate.h" | 10 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 const std::vector<base::string16>& labels, | 39 const std::vector<base::string16>& labels, |
| 40 const std::vector<base::string16>& icons, | 40 const std::vector<base::string16>& icons, |
| 41 const std::vector<int>& identifiers, | 41 const std::vector<int>& identifiers, |
| 42 base::WeakPtr<AutofillPopupDelegate> delegate) OVERRIDE; | 42 base::WeakPtr<AutofillPopupDelegate> delegate) OVERRIDE; |
| 43 virtual void UpdateAutofillPopupDataListValues( | 43 virtual void UpdateAutofillPopupDataListValues( |
| 44 const std::vector<base::string16>& values, | 44 const std::vector<base::string16>& values, |
| 45 const std::vector<base::string16>& labels) OVERRIDE; | 45 const std::vector<base::string16>& labels) OVERRIDE; |
| 46 virtual void HideAutofillPopup() OVERRIDE; | 46 virtual void HideAutofillPopup() OVERRIDE; |
| 47 virtual bool IsAutocompleteEnabled() OVERRIDE; | 47 virtual bool IsAutocompleteEnabled() OVERRIDE; |
| 48 | 48 |
| 49 virtual void DetectAccountCreationForms( |
| 50 const std::vector<autofill::FormStructure*>& forms) OVERRIDE; |
| 51 |
| 49 private: | 52 private: |
| 50 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); |
| 51 }; | 54 }; |
| 52 | 55 |
| 53 } // namespace autofill | 56 } // namespace autofill |
| 54 | 57 |
| 55 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 58 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| OLD | NEW |