| Index: chrome/browser/autocomplete/autocomplete_edit.cc
|
| diff --git a/chrome/browser/autocomplete/autocomplete_edit.cc b/chrome/browser/autocomplete/autocomplete_edit.cc
|
| index fa8d600e6386cc51706358ae6f88f208e36dd615..3201f2a3590f67b030c068377ee74d8d892f8b31 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_edit.cc
|
| +++ b/chrome/browser/autocomplete/autocomplete_edit.cc
|
| @@ -672,6 +672,12 @@ bool AutocompleteEditModel::OnAfterPossibleChange(const std::wstring& new_text,
|
| return true;
|
| }
|
|
|
| +void AutocompleteEditModel::PopupBoundsChangedTo(const gfx::Rect& bounds) {
|
| +#if defined(TOOLKIT_VIEWS)
|
| + controller_->OnPopupBoundsChanged(bounds);
|
| +#endif
|
| +}
|
| +
|
| // Return true if the suggestion type warrants a TCP/IP preconnection.
|
| // i.e., it is now highly likely that the user will select the related domain.
|
| static bool IsPreconnectable(AutocompleteMatch::Type type) {
|
|
|