Index: chrome/browser/ui/views/frame/opaque_browser_frame_view.cc |
=================================================================== |
--- chrome/browser/ui/views/frame/opaque_browser_frame_view.cc (revision 71358) |
+++ chrome/browser/ui/views/frame/opaque_browser_frame_view.cc (working copy) |
@@ -122,7 +122,7 @@ |
tp->GetBitmapNamed(IDR_MINIMIZE_BUTTON_MASK)); |
} |
minimize_button_->SetAccessibleName( |
- UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_MINIMIZE))); |
+ l10n_util::GetStringUTF16(IDS_ACCNAME_MINIMIZE)); |
AddChildView(minimize_button_); |
maximize_button_->SetImage(views::CustomButton::BS_NORMAL, |
@@ -136,7 +136,7 @@ |
tp->GetBitmapNamed(IDR_MAXIMIZE_BUTTON_MASK)); |
} |
maximize_button_->SetAccessibleName( |
- UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_MAXIMIZE))); |
+ l10n_util::GetStringUTF16(IDS_ACCNAME_MAXIMIZE)); |
AddChildView(maximize_button_); |
restore_button_->SetImage(views::CustomButton::BS_NORMAL, |
@@ -150,7 +150,7 @@ |
tp->GetBitmapNamed(IDR_RESTORE_BUTTON_MASK)); |
} |
restore_button_->SetAccessibleName( |
- UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_RESTORE))); |
+ l10n_util::GetStringUTF16(IDS_ACCNAME_RESTORE)); |
AddChildView(restore_button_); |
close_button_->SetImage(views::CustomButton::BS_NORMAL, |
@@ -164,7 +164,7 @@ |
tp->GetBitmapNamed(IDR_CLOSE_BUTTON_MASK)); |
} |
close_button_->SetAccessibleName( |
- UTF16ToWide(l10n_util::GetStringUTF16(IDS_ACCNAME_CLOSE))); |
+ l10n_util::GetStringUTF16(IDS_ACCNAME_CLOSE)); |
AddChildView(close_button_); |
// Initializing the TabIconView is expensive, so only do it if we need to. |