Index: content/browser/renderer_host/gtk_im_context_wrapper.h |
diff --git a/content/browser/renderer_host/gtk_im_context_wrapper.h b/content/browser/renderer_host/gtk_im_context_wrapper.h |
index 1647df1330fe404c913ea16b6b5e9e40ec1d8258..8bd027f0e897f0f59a2cca0190f1931771e4f917 100644 |
--- a/content/browser/renderer_host/gtk_im_context_wrapper.h |
+++ b/content/browser/renderer_host/gtk_im_context_wrapper.h |
@@ -75,7 +75,7 @@ class GtkIMContextWrapper { |
void ProcessInputMethodResult(const GdkEventKey* event, bool filtered); |
// Real code of "commit" signal handler. |
- void HandleCommit(const string16& text); |
+ void HandleCommit(const base::string16& text); |
// Real code of "preedit-start" signal handler. |
void HandlePreeditStart(); |
@@ -180,7 +180,7 @@ class GtkIMContextWrapper { |
// Stores a copy of the most recent commit text received by commit signal |
// handler. |
- string16 commit_text_; |
+ base::string16 commit_text_; |
// If it's true then the next "commit" signal will be suppressed. |
// It's only used to workaround http://crbug.com/50485. |