| Index: chrome/test/chromedriver/keycode_text_conversion_win.cc
|
| diff --git a/chrome/test/chromedriver/keycode_text_conversion_win.cc b/chrome/test/chromedriver/keycode_text_conversion_win.cc
|
| index 5a0c67e41af98965d319dd428cc8f28d853a8e24..3fdb2ce75cddc8a11063d13a444755a7bd9755b9 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;
|
| }
|
| }
|
|
|