Index: chrome/browser/browser_keyevents_browsertest.cc |
=================================================================== |
--- chrome/browser/browser_keyevents_browsertest.cc (revision 184354) |
+++ chrome/browser/browser_keyevents_browsertest.cc (working copy) |
@@ -205,7 +205,7 @@ |
browser()->tab_strip_model()->GetWebContentsAt(tab_index), |
kGetFocusedElementJS, |
&actual)); |
- ASSERT_EQ(base::WideToUTF8(focused), actual); |
+ ASSERT_EQ(WideToUTF8(focused), actual); |
} |
void SetFocusedElement(int tab_index, const wchar_t* focused) { |
@@ -226,7 +226,7 @@ |
browser()->tab_strip_model()->GetWebContentsAt(tab_index), |
base::StringPrintf(kGetTextBoxValueJS, id), |
&actual)); |
- ASSERT_EQ(base::WideToUTF8(value), actual); |
+ ASSERT_EQ(WideToUTF8(value), actual); |
} |
void SetTextBoxValue(int tab_index, const wchar_t* id, |
@@ -237,7 +237,7 @@ |
browser()->tab_strip_model()->GetWebContentsAt(tab_index), |
base::StringPrintf(kSetTextBoxValueJS, id, value), |
&actual)); |
- ASSERT_EQ(base::WideToUTF8(value), actual); |
+ ASSERT_EQ(WideToUTF8(value), actual); |
} |
void StartTest(int tab_index, int result_length) { |