| 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 #include "ui/gfx/rect.h" | 7 #include "ui/gfx/rect.h" |
| 8 | 8 |
| 9 namespace autofill { | 9 namespace autofill { |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 const std::vector<string16>& autofill_values, | 41 const std::vector<string16>& autofill_values, |
| 42 const std::vector<string16>& autofill_labels, | 42 const std::vector<string16>& autofill_labels, |
| 43 const std::vector<string16>& autofill_icons, | 43 const std::vector<string16>& autofill_icons, |
| 44 const std::vector<int>& autofill_unique_ids) {} | 44 const std::vector<int>& autofill_unique_ids) {} |
| 45 | 45 |
| 46 void TestAutofillExternalDelegate::HideAutofillPopup() {} | 46 void TestAutofillExternalDelegate::HideAutofillPopup() {} |
| 47 | 47 |
| 48 void TestAutofillExternalDelegate::EnsurePopupForElement( | 48 void TestAutofillExternalDelegate::EnsurePopupForElement( |
| 49 const gfx::Rect& element_bounds) {} | 49 const gfx::Rect& element_bounds) {} |
| 50 | 50 |
| 51 void TestAutofillExternalDelegate::ControllerDestroyed() {} | |
| 52 | |
| 53 } // namespace autofill | 51 } // namespace autofill |
| OLD | NEW |