| Index: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| index 2049fc0f13f0195b37cd061437b96c4cfbcde989..12399caad264c3b5adec023f4ae55c3deff4feed 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| @@ -137,8 +137,9 @@ std::wstring LocationBarViewMac::GetInputString() const {
|
| return location_input_;
|
| }
|
|
|
| -void LocationBarViewMac::SetSuggestedText(const string16& text) {
|
| - edit_view_->model()->SetSuggestedText(text);
|
| +void LocationBarViewMac::SetSuggestedText(const string16& text,
|
| + InstantCompleteBehavior behavior) {
|
| + edit_view_->model()->SetSuggestedText(text, behavior);
|
| }
|
|
|
| WindowOpenDisposition LocationBarViewMac::GetWindowOpenDisposition() const {
|
|
|