| 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 #include "components/autofill/browser/webdata/autofill_webdata_service.h" |
| 8 |
| 7 namespace autofill { | 9 namespace autofill { |
| 8 | 10 |
| 9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} | 11 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} |
| 10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} | 12 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} |
| 11 | 13 |
| 14 scoped_refptr<AutofillWebDataService> |
| 15 TestAutofillManagerDelegate::GetAutofillWebDataService() { |
| 16 return NULL; |
| 17 } |
| 18 |
| 12 PersonalDataManager* TestAutofillManagerDelegate::GetPersonalDataManager() { | 19 PersonalDataManager* TestAutofillManagerDelegate::GetPersonalDataManager() { |
| 13 return NULL; | 20 return NULL; |
| 14 } | 21 } |
| 15 | 22 |
| 16 autocheckout::WhitelistManager* | 23 autocheckout::WhitelistManager* |
| 17 TestAutofillManagerDelegate::GetAutocheckoutWhitelistManager() const { | 24 TestAutofillManagerDelegate::GetAutocheckoutWhitelistManager() const { |
| 18 return NULL; | 25 return NULL; |
| 19 } | 26 } |
| 20 | 27 |
| 21 PrefService* TestAutofillManagerDelegate::GetPrefs() { | 28 PrefService* TestAutofillManagerDelegate::GetPrefs() { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 const std::vector<base::string16>& labels, | 75 const std::vector<base::string16>& labels, |
| 69 const std::vector<base::string16>& icons, | 76 const std::vector<base::string16>& icons, |
| 70 const std::vector<int>& identifiers, | 77 const std::vector<int>& identifiers, |
| 71 AutofillPopupDelegate* delegate) {} | 78 AutofillPopupDelegate* delegate) {} |
| 72 | 79 |
| 73 void TestAutofillManagerDelegate::HideAutofillPopup() {} | 80 void TestAutofillManagerDelegate::HideAutofillPopup() {} |
| 74 | 81 |
| 75 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} | 82 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} |
| 76 | 83 |
| 77 } // namespace autofill | 84 } // namespace autofill |
| OLD | NEW |