| Index: chrome/browser/autocomplete/autocomplete_popup_model.cc
|
| ===================================================================
|
| --- chrome/browser/autocomplete/autocomplete_popup_model.cc (revision 79782)
|
| +++ chrome/browser/autocomplete/autocomplete_popup_model.cc (working copy)
|
| @@ -136,6 +136,7 @@
|
| // If the current match is a keyword, return that as the selected keyword.
|
| if (TemplateURL::SupportsReplacement(match.template_url)) {
|
| keyword->assign(match.template_url->keyword());
|
| + match.keyword.assign(*keyword);
|
| return false;
|
| }
|
|
|
| @@ -165,6 +166,7 @@
|
| }
|
|
|
| keyword->assign(keyword_hint);
|
| + match.keyword.assign(keyword_hint);
|
| return true;
|
| }
|
|
|
|
|