Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Unified Diff: chrome/browser/ui/gtk/content_setting_bubble_gtk.cc

Issue 112913004: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/content_setting_bubble_gtk.cc
diff --git a/chrome/browser/ui/gtk/content_setting_bubble_gtk.cc b/chrome/browser/ui/gtk/content_setting_bubble_gtk.cc
index 6cdacea1ea64e82002e70fa422001bf9503f664c..fadf7d4ad83f4861f85fe7db90fe9377410553cd 100644
--- a/chrome/browser/ui/gtk/content_setting_bubble_gtk.cc
+++ b/chrome/browser/ui/gtk/content_setting_bubble_gtk.cc
@@ -47,8 +47,8 @@ const int kMinMediaMenuButtonWidth = 100;
const int kMaxMediaMenuButtonWidth = 600;
std::string BuildElidedText(const std::string& input) {
- return UTF16ToUTF8(gfx::ElideText(
- UTF8ToUTF16(input),
+ return base::UTF16ToUTF8(gfx::ElideText(
+ base::UTF8ToUTF16(input),
gfx::Font(),
kMaxLinkPixelSize,
gfx::ELIDE_AT_END));
« no previous file with comments | « chrome/browser/ui/gtk/confirm_bubble_gtk.cc ('k') | chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698