Index: chrome/browser/apps/web_view_browsertest.cc |
diff --git a/chrome/browser/apps/web_view_browsertest.cc b/chrome/browser/apps/web_view_browsertest.cc |
index ed32d5b03442a70fdbb9ca5c5d3c39d089c9acb3..e74f8be43ad77fd527141930edc2f55aa24d2a8c 100644 |
--- a/chrome/browser/apps/web_view_browsertest.cc |
+++ b/chrome/browser/apps/web_view_browsertest.cc |
@@ -449,8 +449,8 @@ class WebViewTest : public extensions::PlatformAppBrowserTest { |
void ExecuteScriptWaitForTitle(content::WebContents* web_contents, |
const char* script, |
const char* title) { |
- base::string16 expected_title(ASCIIToUTF16(title)); |
- base::string16 error_title(ASCIIToUTF16("error")); |
+ base::string16 expected_title(base::ASCIIToUTF16(title)); |
+ base::string16 error_title(base::ASCIIToUTF16("error")); |
content::TitleWatcher title_watcher(web_contents, expected_title); |
title_watcher.AlsoWaitForTitle(error_title); |
@@ -1552,8 +1552,8 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, SpeechRecognition) { |
// way that this will trigger clicking on speech recognition input mic. |
SimulateMouseClick(guest_web_contents, 0, blink::WebMouseEvent::ButtonLeft); |
- base::string16 expected_title(ASCIIToUTF16("PASSED")); |
- base::string16 error_title(ASCIIToUTF16("FAILED")); |
+ base::string16 expected_title(base::ASCIIToUTF16("PASSED")); |
+ base::string16 error_title(base::ASCIIToUTF16("FAILED")); |
content::TitleWatcher title_watcher(guest_web_contents, expected_title); |
title_watcher.AlsoWaitForTitle(error_title); |
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle()); |