| Index: chrome/browser/autofill/autofill_manager.h
|
| diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
|
| index c89bc6c9b47a666c466fcd1ebb9942a1cd543241..d4d142bd74cef619598616733cc4eeec9342e8f2 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 {
|
| @@ -238,7 +239,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();
|
| @@ -246,7 +247,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,
|
|
|