| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/autofill/test_autofill_external_delegate.h" | 5 #include "chrome/browser/autofill/test_autofill_external_delegate.h" |
| 6 | 6 |
| 7 TestAutofillExternalDelegate::TestAutofillExternalDelegate( | 7 TestAutofillExternalDelegate::TestAutofillExternalDelegate( |
| 8 TabContents* tab_contents, AutofillManager* autofill_manager) : | 8 TabContents* tab_contents, AutofillManager* autofill_manager) : |
| 9 AutofillExternalDelegate(tab_contents, autofill_manager) {} | 9 AutofillExternalDelegate(tab_contents, autofill_manager) {} |
| 10 | 10 |
| 11 TestAutofillExternalDelegate::~TestAutofillExternalDelegate() {} | 11 TestAutofillExternalDelegate::~TestAutofillExternalDelegate() {} |
| 12 | 12 |
| 13 void TestAutofillExternalDelegate::ApplyAutofillSuggestions( | 13 void TestAutofillExternalDelegate::ApplyAutofillSuggestions( |
| 14 const std::vector<string16>& autofill_values, | 14 const std::vector<string16>& autofill_values, |
| 15 const std::vector<string16>& autofill_labels, | 15 const std::vector<string16>& autofill_labels, |
| 16 const std::vector<string16>& autofill_icons, | 16 const std::vector<string16>& autofill_icons, |
| 17 const std::vector<int>& autofill_unique_ids) {} | 17 const std::vector<int>& autofill_unique_ids) {} |
| 18 | 18 |
| 19 void TestAutofillExternalDelegate::OnQueryPlatformSpecific( | 19 void TestAutofillExternalDelegate::OnQueryPlatformSpecific( |
| 20 int query_id, | 20 int query_id, |
| 21 const webkit::forms::FormData& form, | 21 const FormData& form, |
| 22 const webkit::forms::FormField& field, | 22 const FormFieldData& field, |
| 23 const gfx::Rect& bounds) {} | 23 const gfx::Rect& bounds) {} |
| 24 | 24 |
| 25 void TestAutofillExternalDelegate::HideAutofillPopupInternal() {} | 25 void TestAutofillExternalDelegate::HideAutofillPopupInternal() {} |
| 26 | 26 |
| 27 void TestAutofillExternalDelegate::SetBounds(const gfx::Rect& bounds) {} | 27 void TestAutofillExternalDelegate::SetBounds(const gfx::Rect& bounds) {} |
| OLD | NEW |