| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 6 #define COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "components/autofill/browser/autofill_manager_delegate.h" | 9 #include "components/autofill/browser/autofill_manager_delegate.h" |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 const gfx::RectF& bounding_box, | 41 const gfx::RectF& bounding_box, |
| 42 const base::Callback<void(bool)>& callback) OVERRIDE; | 42 const base::Callback<void(bool)>& callback) OVERRIDE; |
| 43 virtual void HideAutocheckoutBubble() OVERRIDE; | 43 virtual void HideAutocheckoutBubble() OVERRIDE; |
| 44 virtual void ShowRequestAutocompleteDialog( | 44 virtual void ShowRequestAutocompleteDialog( |
| 45 const FormData& form, | 45 const FormData& form, |
| 46 const GURL& source_url, | 46 const GURL& source_url, |
| 47 DialogType dialog_type, | 47 DialogType dialog_type, |
| 48 const base::Callback<void(const FormStructure*, | 48 const base::Callback<void(const FormStructure*, |
| 49 const std::string&)>& callback) OVERRIDE; | 49 const std::string&)>& callback) OVERRIDE; |
| 50 virtual void ShowAutofillPopup(const gfx::RectF& element_bounds, | 50 virtual void ShowAutofillPopup(const gfx::RectF& element_bounds, |
| 51 const std::vector<string16>& values, | 51 const std::vector<base::string16>& values, |
| 52 const std::vector<string16>& labels, | 52 const std::vector<base::string16>& labels, |
| 53 const std::vector<string16>& icons, | 53 const std::vector<base::string16>& icons, |
| 54 const std::vector<int>& identifiers, | 54 const std::vector<int>& identifiers, |
| 55 AutofillPopupDelegate* delegate) OVERRIDE; | 55 AutofillPopupDelegate* delegate) OVERRIDE; |
| 56 virtual void HideAutofillPopup() OVERRIDE; | 56 virtual void HideAutofillPopup() OVERRIDE; |
| 57 virtual void UpdateProgressBar(double value) OVERRIDE; | 57 virtual void UpdateProgressBar(double value) OVERRIDE; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); | 60 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace autofill | 63 } // namespace autofill |
| 64 | 64 |
| 65 #endif // COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 65 #endif // COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| OLD | NEW |