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 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, | 56 const std::vector<base::string16>& labels, |
57 const std::vector<base::string16>& icons, | 57 const std::vector<base::string16>& icons, |
58 const std::vector<int>& identifiers, | 58 const std::vector<int>& identifiers, |
59 base::WeakPtr<AutofillPopupDelegate> delegate) {} | 59 base::WeakPtr<AutofillPopupDelegate> delegate) {} |
60 | 60 |
61 void TestAutofillManagerDelegate::HideAutofillPopup() {} | 61 void TestAutofillManagerDelegate::HideAutofillPopup() {} |
62 | 62 |
63 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} | 63 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} |
64 | 64 |
| 65 bool TestAutofillManagerDelegate::IsAutocompleteEnabled() { |
| 66 return true; |
| 67 } |
| 68 |
65 } // namespace autofill | 69 } // namespace autofill |
OLD | NEW |