| Index: chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
|
| index 3a43b3e0e684d512bccf366a9165e0d02c32418f..dcf9e6fa5573cb11f176b8ce63c5ef047e07d3e9 100644
|
| --- a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
|
| @@ -76,8 +76,8 @@ class TestAutofillPopupController : public AutofillPopupControllerImpl {
|
| const gfx::Rect& popup_bounds() const {
|
| return AutofillPopupControllerImpl::popup_bounds();
|
| }
|
| - const gfx::Rect& element_bounds() const {
|
| - return AutofillPopupControllerImpl::element_bounds();
|
| + const gfx::Rect rounded_element_bounds() const {
|
| + return AutofillPopupControllerImpl::rounded_element_bounds();
|
| }
|
| #if !defined(OS_ANDROID)
|
| const gfx::Font& name_font() const {
|
| @@ -289,7 +289,7 @@ TEST_F(AutofillPopupControllerUnitTest, GetOrCreate) {
|
| bounds);
|
| EXPECT_EQ(
|
| bounds,
|
| - static_cast<AutofillPopupController*>(controller3)->element_bounds());
|
| + static_cast<AutofillPopupController*>(controller3)->rounded_element_bounds());
|
| controller3->Hide();
|
|
|
| EXPECT_CALL(delegate, ControllerDestroyed());
|
|
|