summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver/keycode_text_conversion_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/chromedriver/keycode_text_conversion_win.cc')
-rw-r--r--chrome/test/chromedriver/keycode_text_conversion_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/keycode_text_conversion_win.cc b/chrome/test/chromedriver/keycode_text_conversion_win.cc
index 5a0c67e..3fdb2ce 100644
--- a/chrome/test/chromedriver/keycode_text_conversion_win.cc
+++ b/chrome/test/chromedriver/keycode_text_conversion_win.cc
@@ -29,7 +29,7 @@ std::string ConvertKeyCodeToText(ui::KeyboardCode key_code, int modifiers) {
return "";
} else {
std::string text;
- WideToUTF8(chars, code, &text);
+ base::WideToUTF8(chars, code, &text);
return text;
}
}