| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/autofill/test_autofill_manager_delegate.h" |
| 6 |
| 7 namespace autofill { |
| 8 |
| 9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} |
| 10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} |
| 11 |
| 12 InfoBarService* TestAutofillManagerDelegate::GetInfoBarService() { |
| 13 return NULL; |
| 14 } |
| 15 |
| 16 PersonalDataManager* TestAutofillManagerDelegate::GetPersonalDataManager() { |
| 17 return NULL; |
| 18 } |
| 19 |
| 20 PrefService* TestAutofillManagerDelegate::GetPrefs() { |
| 21 return NULL; |
| 22 } |
| 23 |
| 24 ProfileSyncServiceBase* TestAutofillManagerDelegate::GetProfileSyncService() { |
| 25 return NULL; |
| 26 } |
| 27 |
| 28 void TestAutofillManagerDelegate::HideRequestAutocompleteDialog() {} |
| 29 |
| 30 bool TestAutofillManagerDelegate::IsSavingPasswordsEnabled() const { |
| 31 return false; |
| 32 } |
| 33 |
| 34 void TestAutofillManagerDelegate::OnAutocheckoutError() {} |
| 35 |
| 36 void TestAutofillManagerDelegate::ShowAutofillSettings() {} |
| 37 |
| 38 void TestAutofillManagerDelegate::ShowPasswordGenerationBubble( |
| 39 const gfx::Rect& bounds, |
| 40 const content::PasswordForm& form, |
| 41 autofill::PasswordGenerator* generator) {} |
| 42 |
| 43 void TestAutofillManagerDelegate::ShowAutocheckoutBubble( |
| 44 const gfx::RectF& bounding_box, |
| 45 const gfx::NativeView& native_view, |
| 46 const base::Closure& callback) {} |
| 47 |
| 48 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( |
| 49 const FormData& form, |
| 50 const GURL& source_url, |
| 51 const content::SSLStatus& ssl_status, |
| 52 const AutofillMetrics& metric_logger, |
| 53 DialogType dialog_type, |
| 54 const base::Callback<void(const FormStructure*)>& callback) {} |
| 55 |
| 56 void TestAutofillManagerDelegate::RequestAutocompleteDialogClosed() {} |
| 57 |
| 58 void TestAutofillManagerDelegate::ShowAutofillPopup( |
| 59 const gfx::RectF& element_bounds, |
| 60 const std::vector<string16>& values, |
| 61 const std::vector<string16>& labels, |
| 62 const std::vector<string16>& icons, |
| 63 const std::vector<int>& identifiers, |
| 64 AutofillPopupDelegate* delegate) {} |
| 65 |
| 66 void TestAutofillManagerDelegate::HideAutofillPopup() {} |
| 67 |
| 68 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} |
| 69 |
| 70 } // namespace autofill |
| OLD | NEW |