summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 16:52:40 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 16:52:40 +0000
commit33a968691cf644692428f2b59478479db6376e0e (patch)
tree61e5d9967fc7b88efd14c2c54c574d1cd6165b4c /chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
parent0472d93e6feea49df59caadb7ab849a9599f916f (diff)
downloadchromium_src-33a968691cf644692428f2b59478479db6376e0e.zip
chromium_src-33a968691cf644692428f2b59478479db6376e0e.tar.gz
chromium_src-33a968691cf644692428f2b59478479db6376e0e.tar.bz2
views: Change TextButton API to string16.
BUG=68267 R=sky@chromium.org Review URL: http://codereview.chromium.org/8346013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106302 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/views/fullscreen_exit_bubble_views.cc')
-rw-r--r--chrome/browser/ui/views/fullscreen_exit_bubble_views.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
index 67c0795..ba7358c 100644
--- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
+++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
@@ -112,8 +112,8 @@ FullscreenExitBubbleViews::FullscreenExitView::FullscreenExitView(
AddChildView(&instruction_label_);
AddChildView(&link_);
- accept_button_ = new views::NativeTextButton(this,
- UTF16ToWideHack(bubble->GetAllowButtonText()));
+ accept_button_ = new views::NativeTextButton(
+ this, bubble->GetAllowButtonText());
accept_button_->set_focusable(false);
AddChildView(accept_button_);