| Index: chrome/browser/ui/autofill/autofill_popup_view.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_popup_view.h b/chrome/browser/ui/autofill/autofill_popup_view.h
|
| index 4bb752fe467bf8df3249916f09268fbc35640c29..5056768f1d72bbda32bafad852b6be962e472f30 100644
|
| --- a/chrome/browser/ui/autofill/autofill_popup_view.h
|
| +++ b/chrome/browser/ui/autofill/autofill_popup_view.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "base/strings/string16.h"
|
| #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h"
|
| +#include "ui/accessibility/ax_enums.h"
|
|
|
| namespace autofill {
|
|
|
| @@ -24,11 +25,12 @@ class AutofillPopupView {
|
| // Hides the popup from view. This will cause the popup to be deleted.
|
| virtual void Hide() = 0;
|
|
|
| - // Invalidates the given row and redraw it.
|
| - virtual void InvalidateRow(size_t row) = 0;
|
| + // Invalidates the given row and redraws it. |is_selected| is true if the
|
| + // suggestion displayed in |row| is now the selected suggestion.
|
| + virtual void InvalidateRow(size_t row, bool is_selected) = 0;
|
|
|
| - // Refreshes the position of the popup.
|
| - virtual void UpdateBoundsAndRedrawPopup() = 0;
|
| + // Refreshes the position and redraws popup when suggestions change.
|
| + virtual void OnSuggestionsChanged() = 0;
|
|
|
| // Factory function for creating the view.
|
| static AutofillPopupView* Create(AutofillPopupController* controller);
|
|
|