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/autocheckout_bubble_state.h" | 10 #include "components/autofill/core/browser/autocheckout_bubble_state.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 const std::vector<base::string16>& values, | 55 const std::vector<base::string16>& values, |
56 const std::vector<base::string16>& labels) OVERRIDE; | 56 const std::vector<base::string16>& labels) OVERRIDE; |
57 virtual void HideAutofillPopup() OVERRIDE; | 57 virtual void HideAutofillPopup() OVERRIDE; |
58 virtual bool IsAutocompleteEnabled() OVERRIDE; | 58 virtual bool IsAutocompleteEnabled() OVERRIDE; |
59 | 59 |
60 virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) OVERRIDE; | 60 virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) OVERRIDE; |
61 virtual void UpdateAutocheckoutStep( | 61 virtual void UpdateAutocheckoutStep( |
62 AutocheckoutStepType step_type, | 62 AutocheckoutStepType step_type, |
63 AutocheckoutStepStatus step_status) OVERRIDE; | 63 AutocheckoutStepStatus step_status) OVERRIDE; |
64 | 64 |
| 65 virtual void DetectAccountCreationForms( |
| 66 const std::vector<autofill::FormStructure*>& forms) OVERRIDE; |
| 67 |
65 private: | 68 private: |
66 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); | 69 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); |
67 }; | 70 }; |
68 | 71 |
69 } // namespace autofill | 72 } // namespace autofill |
70 | 73 |
71 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 74 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
OLD | NEW |