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

Unified Diff: content/browser/renderer_host/gtk_im_context_wrapper.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/renderer_host/gtk_im_context_wrapper.cc
diff --git a/content/browser/renderer_host/gtk_im_context_wrapper.cc b/content/browser/renderer_host/gtk_im_context_wrapper.cc
index d4b77894f5aa254da9296e5811ea05056b2d438b..3601b8d1f5943a00237ff74a5e64e581b8063e0c 100644
--- a/content/browser/renderer_host/gtk_im_context_wrapper.cc
+++ b/content/browser/renderer_host/gtk_im_context_wrapper.cc
@@ -623,7 +623,7 @@ void GtkIMContextWrapper::SendFakeCompositionKeyEvent(
void GtkIMContextWrapper::HandleCommitThunk(
GtkIMContext* context, gchar* text, GtkIMContextWrapper* self) {
- self->HandleCommit(UTF8ToUTF16(text));
+ self->HandleCommit(base::UTF8ToUTF16(text));
}
void GtkIMContextWrapper::HandlePreeditStartThunk(

Powered by Google App Engine
This is Rietveld 408576698