| Index: chrome/browser/autofill/autofill_manager.h
|
| diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
|
| index 2acfbba86b17d563c0efb5e918d01c8bb07254db..2668a364705e085823556e018f3f834c5ceb9666 100644
|
| --- a/chrome/browser/autofill/autofill_manager.h
|
| +++ b/chrome/browser/autofill/autofill_manager.h
|
| @@ -65,6 +65,7 @@ struct PasswordForm;
|
|
|
| namespace gfx {
|
| class Rect;
|
| +class RectF;
|
| }
|
|
|
| namespace IPC {
|
| @@ -232,7 +233,7 @@ class AutofillManager : public content::WebContentsObserver,
|
| void OnQueryFormFieldAutofill(int query_id,
|
| const FormData& form,
|
| const FormFieldData& field,
|
| - const gfx::Rect& bounding_box,
|
| + const gfx::RectF& bounding_box,
|
| bool display_warning);
|
| void OnDidEndTextFieldEditing();
|
| void OnHideAutofillPopup();
|
| @@ -240,7 +241,7 @@ class AutofillManager : public content::WebContentsObserver,
|
| const FormFieldData& form,
|
| const PasswordFormFillData& fill_data);
|
| void OnShowPasswordSuggestions(const FormFieldData& field,
|
| - const gfx::Rect& bounds,
|
| + const gfx::RectF& bounds,
|
| const std::vector<string16>& suggestions);
|
| void OnSetDataList(const std::vector<string16>& values,
|
| const std::vector<string16>& labels,
|
|
|