| Index: chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| index f87d77a54f686cb9b1604b69aa7fd26416e32a36..cde12ffd229eaf11936e0c729ea213cc51fa192a 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc
|
| @@ -691,10 +691,9 @@ gfx::NativeView OmniboxViewViews::GetRelativeWindowForPopup() const {
|
| return GetWidget()->GetTopLevelWidget()->GetNativeView();
|
| }
|
|
|
| -void OmniboxViewViews::SetInstantSuggestion(const string16& input,
|
| - bool animate_to_complete) {
|
| +void OmniboxViewViews::SetInstantSuggestion(const string16& input) {
|
| #if defined(OS_WIN) || defined(USE_AURA)
|
| - location_bar_view_->SetInstantSuggestion(input, animate_to_complete);
|
| + location_bar_view_->SetInstantSuggestion(input);
|
| #endif
|
| }
|
|
|
|
|