diff options
Diffstat (limited to 'chrome/browser/instant/instant_browsertest.cc')
-rw-r--r-- | chrome/browser/instant/instant_browsertest.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chrome/browser/instant/instant_browsertest.cc b/chrome/browser/instant/instant_browsertest.cc index d5cb8c8..974e05d 100644 --- a/chrome/browser/instant/instant_browsertest.cc +++ b/chrome/browser/instant/instant_browsertest.cc @@ -812,23 +812,23 @@ IN_PROC_BROWSER_TEST_F(InstantTest, SuggestionsAreCaseInsensitive) { omnibox()->RevertAll(); SetOmniboxTextAndWaitForInstantToShow("i"); - EXPECT_EQ(WideToUTF16(L"i\u0307nstant"), omnibox()->GetText()); + EXPECT_EQ(base::WideToUTF16(L"i\u0307nstant"), omnibox()->GetText()); omnibox()->RevertAll(); SetOmniboxTextAndWaitForInstantToShow("I"); - EXPECT_EQ(WideToUTF16(L"I\u0307nstant"), omnibox()->GetText()); + EXPECT_EQ(base::WideToUTF16(L"I\u0307nstant"), omnibox()->GetText()); omnibox()->RevertAll(); - SetOmniboxTextAndWaitForInstantToShow(WideToUTF8(L"i\u0307")); - EXPECT_EQ(WideToUTF16(L"i\u0307nstant"), omnibox()->GetText()); + SetOmniboxTextAndWaitForInstantToShow(base::WideToUTF8(L"i\u0307")); + EXPECT_EQ(base::WideToUTF16(L"i\u0307nstant"), omnibox()->GetText()); omnibox()->RevertAll(); - SetOmniboxTextAndWaitForInstantToShow(WideToUTF8(L"I\u0307")); - EXPECT_EQ(WideToUTF16(L"I\u0307nstant"), omnibox()->GetText()); + SetOmniboxTextAndWaitForInstantToShow(base::WideToUTF8(L"I\u0307")); + EXPECT_EQ(base::WideToUTF16(L"I\u0307nstant"), omnibox()->GetText()); omnibox()->RevertAll(); - SetOmniboxTextAndWaitForInstantToShow(WideToUTF8(L"\u0130")); - EXPECT_EQ(WideToUTF16(L"\u0130NSTANT"), omnibox()->GetText()); + SetOmniboxTextAndWaitForInstantToShow(base::WideToUTF8(L"\u0130")); + EXPECT_EQ(base::WideToUTF16(L"\u0130NSTANT"), omnibox()->GetText()); omnibox()->RevertAll(); SetOmniboxTextAndWaitForInstantToShow("in"); @@ -845,8 +845,8 @@ IN_PROC_BROWSER_TEST_F(InstantTest, SuggestionsAreCaseInsensitive) { EXPECT_TRUE(ExecuteScript("suggestion = [ { value: '\\u1e0d\\u0307oh' } ]")); omnibox()->RevertAll(); - SetOmniboxTextAndWaitForInstantToShow(WideToUTF8(L"\u1e0b\u0323")); - EXPECT_EQ(WideToUTF16(L"\u1e0b\u0323oh"), omnibox()->GetText()); + SetOmniboxTextAndWaitForInstantToShow(base::WideToUTF8(L"\u1e0b\u0323")); + EXPECT_EQ(base::WideToUTF16(L"\u1e0b\u0323oh"), omnibox()->GetText()); } // Flakes on Windows and Mac: http://crbug.com/170677 |