summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/text_input_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/text_input_controller.cc')
-rw-r--r--webkit/tools/test_shell/text_input_controller.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/webkit/tools/test_shell/text_input_controller.cc b/webkit/tools/test_shell/text_input_controller.cc
index a371881..121d9a9 100644
--- a/webkit/tools/test_shell/text_input_controller.cc
+++ b/webkit/tools/test_shell/text_input_controller.cc
@@ -4,7 +4,6 @@
#include "webkit/tools/test_shell/text_input_controller.h"
-#include "base/string_util.h"
#include "webkit/glue/webview.h"
#include "webkit/glue/webframe.h"
#include "webkit/glue/webtextinput.h"
@@ -51,7 +50,7 @@ void TextInputController::insertText(
return;
if (args.size() >= 1 && args[0].isString()) {
- text_input->InsertText(UTF8ToUTF16(args[0].ToString()));
+ text_input->InsertText(args[0].ToString());
}
}
@@ -64,7 +63,7 @@ void TextInputController::doCommand(
return;
if (args.size() >= 1 && args[0].isString()) {
- text_input->DoCommand(UTF8ToUTF16(args[0].ToString()));
+ text_input->DoCommand(args[0].ToString());
}
}
@@ -78,7 +77,7 @@ void TextInputController::setMarkedText(
if (args.size() >= 3 && args[0].isString()
&& args[1].isNumber() && args[2].isNumber()) {
- text_input->SetMarkedText(UTF8ToUTF16(args[0].ToString()),
+ text_input->SetMarkedText(args[0].ToString(),
args[1].ToInt32(),
args[2].ToInt32());
}