summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/query_parser_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/history/query_parser_unittest.cc')
-rw-r--r--chrome/browser/history/query_parser_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/history/query_parser_unittest.cc b/chrome/browser/history/query_parser_unittest.cc
index 0b34e74..860cab8 100644
--- a/chrome/browser/history/query_parser_unittest.cc
+++ b/chrome/browser/history/query_parser_unittest.cc
@@ -39,12 +39,12 @@ TEST_F(QueryParserTest, SimpleQueries) {
// the minimum is 2 while for other scripts, it's 3.
EXPECT_EQ("f b", QueryToString(" f b"));
// KA JANG
- EXPECT_EQ(WideToUTF8(L"\xAC00 \xC7A5"),
- QueryToString(WideToUTF8(L" \xAC00 \xC7A5")));
+ EXPECT_EQ(base::WideToUTF8(L"\xAC00 \xC7A5"),
+ QueryToString(base::WideToUTF8(L" \xAC00 \xC7A5")));
EXPECT_EQ("foo* bar*", QueryToString(" foo bar "));
// KA-JANG BICH-GO
- EXPECT_EQ(WideToUTF8(L"\xAC00\xC7A5* \xBE5B\xACE0*"),
- QueryToString(WideToUTF8(L"\xAC00\xC7A5 \xBE5B\xACE0")));
+ EXPECT_EQ(base::WideToUTF8(L"\xAC00\xC7A5* \xBE5B\xACE0*"),
+ QueryToString(base::WideToUTF8(L"\xAC00\xC7A5 \xBE5B\xACE0")));
}
// Quoted substring parsing.