| Index: chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/location_bar_view_gtk.cc b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| index e314fe33c65697523466854d2eb9ffce7870ec3c..11ea02d30a4114aafc1e2c5d3e78896e634ed03c 100644
|
| --- a/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| @@ -583,8 +583,9 @@ void LocationBarViewGtk::ShowFirstRunBubble(FirstRun::BubbleType bubble_type) {
|
| MessageLoop::current()->PostTask(FROM_HERE, task);
|
| }
|
|
|
| -void LocationBarViewGtk::SetSuggestedText(const string16& text) {
|
| - location_entry_->model()->SetSuggestedText(text);
|
| +void LocationBarViewGtk::SetSuggestedText(const string16& text,
|
| + InstantCompleteBehavior behavior) {
|
| + location_entry_->model()->SetSuggestedText(text, behavior);
|
| }
|
|
|
| std::wstring LocationBarViewGtk::GetInputString() const {
|
|
|