| 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 #include "components/autofill/browser/test_autofill_manager_delegate.h" | 5 #include "components/autofill/browser/test_autofill_manager_delegate.h" |
| 6 | 6 |
| 7 namespace autofill { | 7 namespace autofill { |
| 8 | 8 |
| 9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} | 9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} |
| 10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} | 10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( | 58 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( |
| 59 const FormData& form, | 59 const FormData& form, |
| 60 const GURL& source_url, | 60 const GURL& source_url, |
| 61 DialogType dialog_type, | 61 DialogType dialog_type, |
| 62 const base::Callback<void(const FormStructure*, | 62 const base::Callback<void(const FormStructure*, |
| 63 const std::string&)>& callback) {} | 63 const std::string&)>& callback) {} |
| 64 | 64 |
| 65 void TestAutofillManagerDelegate::ShowAutofillPopup( | 65 void TestAutofillManagerDelegate::ShowAutofillPopup( |
| 66 const gfx::RectF& element_bounds, | 66 const gfx::RectF& element_bounds, |
| 67 const std::vector<string16>& values, | 67 const std::vector<base::string16>& values, |
| 68 const std::vector<string16>& labels, | 68 const std::vector<base::string16>& labels, |
| 69 const std::vector<string16>& icons, | 69 const std::vector<base::string16>& icons, |
| 70 const std::vector<int>& identifiers, | 70 const std::vector<int>& identifiers, |
| 71 AutofillPopupDelegate* delegate) {} | 71 AutofillPopupDelegate* delegate) {} |
| 72 | 72 |
| 73 void TestAutofillManagerDelegate::HideAutofillPopup() {} | 73 void TestAutofillManagerDelegate::HideAutofillPopup() {} |
| 74 | 74 |
| 75 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} | 75 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} |
| 76 | 76 |
| 77 } // namespace autofill | 77 } // namespace autofill |
| OLD | NEW |