Index: chrome/browser/ui/views/tabs/base_tab.cc |
=================================================================== |
--- chrome/browser/ui/views/tabs/base_tab.cc (revision 71358) |
+++ chrome/browser/ui/views/tabs/base_tab.cc (working copy) |
@@ -141,7 +141,7 @@ |
close_button_->SetTooltipText( |
UTF16ToWide(l10n_util::GetStringUTF16(IDS_TOOLTIP_CLOSE_TAB))); |
close_button_->SetAccessibleName( |
- UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_CLOSE))); |
+ l10n_util::GetStringUTF16(IDS_ACCNAME_CLOSE)); |
// Disable animation so that the red danger sign shows up immediately |
// to help avoid mis-clicks. |
close_button_->SetAnimationDuration(0); |
@@ -167,7 +167,7 @@ |
} |
// Sets the accessible name for the tab. |
- SetAccessibleName(UTF16ToWide(data_.title)); |
+ SetAccessibleName(data_.title); |
DataChanged(old); |