| Index: components/autofill/ios/browser/autofill_driver_ios.mm
|
| diff --git a/components/autofill/ios/browser/autofill_driver_ios.mm b/components/autofill/ios/browser/autofill_driver_ios.mm
|
| index 1f32dddc5e36d30af94f20382df3d47d8ea96b02..49a24f0f997993f04299120ded631dc02fe3546e 100644
|
| --- a/components/autofill/ios/browser/autofill_driver_ios.mm
|
| +++ b/components/autofill/ios/browser/autofill_driver_ios.mm
|
| @@ -8,6 +8,7 @@
|
| #include "ios/web/public/browser_state.h"
|
| #include "ios/web/public/web_state/web_state.h"
|
| #include "ios/web/public/web_thread.h"
|
| +#include "ui/gfx/geometry/rect_f.h"
|
|
|
| DEFINE_WEB_STATE_USER_DATA_KEY(autofill::AutofillDriverIOS);
|
|
|
| @@ -98,4 +99,9 @@ void AutofillDriverIOS::RendererShouldPreviewFieldWithValue(
|
| void AutofillDriverIOS::PopupHidden() {
|
| }
|
|
|
| +gfx::RectF AutofillDriverIOS::TransformBoundingBoxToViewportCoordinates(
|
| + const gfx::RectF& bounding_box) {
|
| + return bounding_box;
|
| +}
|
| +
|
| } // namespace autofill
|
|
|