| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/location_bar/location_bar_view.cc (revision 71358)
|
| +++ chrome/browser/ui/views/location_bar/location_bar_view.cc (working copy)
|
| @@ -173,7 +173,7 @@
|
| location_entry_view_ = location_entry_->AddToView(this);
|
| location_entry_view_->SetID(VIEW_ID_AUTOCOMPLETE);
|
| location_entry_view_->SetAccessibleName(
|
| - UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_LOCATION)));
|
| + l10n_util::GetStringUTF16(IDS_ACCNAME_LOCATION));
|
|
|
| selected_keyword_view_ = new SelectedKeywordView(
|
| kSelectedKeywordBackgroundImages, IDR_KEYWORD_SEARCH_MAGNIFIER,
|
| @@ -209,8 +209,7 @@
|
| // AutocompleteEditView to close its popup.
|
| SetNotifyWhenVisibleBoundsInRootChanges(true);
|
|
|
| - SetAccessibleName(
|
| - UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_LOCATION)));
|
| + SetAccessibleName(l10n_util::GetStringUTF16(IDS_ACCNAME_LOCATION));
|
|
|
| // Initialize the location entry. We do this to avoid a black flash which is
|
| // visible when the location entry has just been initialized.
|
|
|