| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 const gfx::NativeView& native_view, | 54 const gfx::NativeView& native_view, |
| 55 const base::Callback<void(bool)>& callback) {} | 55 const base::Callback<void(bool)>& callback) {} |
| 56 | 56 |
| 57 void TestAutofillManagerDelegate::HideAutocheckoutBubble() {} | 57 void TestAutofillManagerDelegate::HideAutocheckoutBubble() {} |
| 58 | 58 |
| 59 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( | 59 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( |
| 60 const FormData& form, | 60 const FormData& form, |
| 61 const GURL& source_url, | 61 const GURL& source_url, |
| 62 const AutofillMetrics& metric_logger, | 62 const AutofillMetrics& metric_logger, |
| 63 DialogType dialog_type, | 63 DialogType dialog_type, |
| 64 const base::Callback<void(const FormStructure*)>& callback) {} | 64 const base::Callback<void(const FormStructure*, |
| 65 const std::string&)>& callback) {} |
| 65 | 66 |
| 66 void TestAutofillManagerDelegate::RequestAutocompleteDialogClosed() {} | 67 void TestAutofillManagerDelegate::RequestAutocompleteDialogClosed() {} |
| 67 | 68 |
| 68 void TestAutofillManagerDelegate::ShowAutofillPopup( | 69 void TestAutofillManagerDelegate::ShowAutofillPopup( |
| 69 const gfx::RectF& element_bounds, | 70 const gfx::RectF& element_bounds, |
| 70 const std::vector<string16>& values, | 71 const std::vector<string16>& values, |
| 71 const std::vector<string16>& labels, | 72 const std::vector<string16>& labels, |
| 72 const std::vector<string16>& icons, | 73 const std::vector<string16>& icons, |
| 73 const std::vector<int>& identifiers, | 74 const std::vector<int>& identifiers, |
| 74 AutofillPopupDelegate* delegate) {} | 75 AutofillPopupDelegate* delegate) {} |
| 75 | 76 |
| 76 void TestAutofillManagerDelegate::HideAutofillPopup() {} | 77 void TestAutofillManagerDelegate::HideAutofillPopup() {} |
| 77 | 78 |
| 78 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} | 79 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} |
| 79 | 80 |
| 80 } // namespace autofill | 81 } // namespace autofill |
| OLD | NEW |