| Index: chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
|
| index 6473184eadf65474d343151d4f7d8ea8de7e3194..e1dc38df1201d875977754ebdc28a86b2070132e 100644
|
| --- a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
|
| @@ -191,6 +191,8 @@ int AutofillPopupControllerImpl::GetIconResourceID(
|
| }
|
|
|
| bool AutofillPopupControllerImpl::CanDelete(size_t index) {
|
| + // TODO(isherman): AddressBook suggestions on Mac should not be drawn as
|
| + // deleteable.
|
| int id = identifiers_[index];
|
| return id > 0 ||
|
| id == WebAutofillClient::MenuItemIDAutocompleteEntry ||
|
| @@ -432,6 +434,8 @@ bool AutofillPopupControllerImpl::RemoveSelectedLine() {
|
|
|
| if (HasSuggestions()) {
|
| delegate_->ClearPreviewedForm();
|
| + // TODO(isherman): This doesn't update the origin as it should on Mac, due
|
| + // to the flipped coordinate system.
|
| UpdateBoundsAndRedrawPopup();
|
| } else {
|
| HideInternal();
|
|
|