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

Unified Diff: content/browser/web_contents/web_contents_view_gtk.cc

Issue 121033002: Update uses of UTF conversions in content/ 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: content/browser/web_contents/web_contents_view_gtk.cc
diff --git a/content/browser/web_contents/web_contents_view_gtk.cc b/content/browser/web_contents/web_contents_view_gtk.cc
index bf4dcb7fd3bb07363eeaf6d49af34f54c25d02cb..516ada05b0146c0de2dc672f2c9a5b09134d7630 100644
--- a/content/browser/web_contents/web_contents_view_gtk.cc
+++ b/content/browser/web_contents/web_contents_view_gtk.cc
@@ -253,7 +253,7 @@ void WebContentsViewGtk::SetPageTitle(const base::string16& title) {
if (content_view) {
GdkWindow* content_window = gtk_widget_get_window(content_view);
if (content_window) {
- gdk_window_set_title(content_window, UTF16ToUTF8(title).c_str());
+ gdk_window_set_title(content_window, base::UTF16ToUTF8(title).c_str());
}
}
}
« no previous file with comments | « content/browser/web_contents/web_contents_view_aura_browsertest.cc ('k') | content/browser/web_contents/web_drag_dest_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698