| Index: chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
|
| diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
|
| index 27160507e03c6af41bdea283b8756e6fb1c51aa2..7bdbb526211a7aa5278c0271089caa0e31d9f1e9 100644
|
| --- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
|
| +++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
|
| @@ -47,11 +47,10 @@ FullscreenExitBubbleViews::FullscreenExitView::FullscreenExitView(
|
| link_.set_parent_owned(false);
|
| #if !defined(OS_CHROMEOS)
|
| link_.SetText(
|
| - UTF16ToWide(l10n_util::GetStringFUTF16(IDS_EXIT_FULLSCREEN_MODE,
|
| - WideToUTF16(accelerator))));
|
| + l10n_util::GetStringFUTF16(IDS_EXIT_FULLSCREEN_MODE,
|
| + WideToUTF16(accelerator)));
|
| #else
|
| - link_.SetText(
|
| - UTF16ToWide(l10n_util::GetStringUTF16(IDS_EXIT_FULLSCREEN_MODE)));
|
| + link_.SetText(l10n_util::GetStringUTF16(IDS_EXIT_FULLSCREEN_MODE));
|
| #endif
|
| link_.set_listener(bubble);
|
| link_.SetFont(ResourceBundle::GetSharedInstance().GetFont(
|
|
|