Index: chrome/browser/apps/web_view_interactive_browsertest.cc |
diff --git a/chrome/browser/apps/web_view_interactive_browsertest.cc b/chrome/browser/apps/web_view_interactive_browsertest.cc |
index 4e79775f2cff613b8b21269e6a0f9f7759a8d834..15a1bba4652133f4a483354e60b65ec7c86a0fc8 100644 |
--- a/chrome/browser/apps/web_view_interactive_browsertest.cc |
+++ b/chrome/browser/apps/web_view_interactive_browsertest.cc |
@@ -297,8 +297,8 @@ class WebViewInteractiveTest |
}; |
void WaitForTitle(const char* title) { |
- string16 expected_title(ASCIIToUTF16(title)); |
- string16 error_title(ASCIIToUTF16("FAILED")); |
+ base::string16 expected_title(ASCIIToUTF16(title)); |
+ base::string16 error_title(ASCIIToUTF16("FAILED")); |
content::TitleWatcher title_watcher(guest_web_contents(), expected_title); |
title_watcher.AlsoWaitForTitle(error_title); |
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle()); |
@@ -324,8 +324,8 @@ class WebViewInteractiveTest |
ASSERT_TRUE(!popup_rwh->IsRenderView()); |
ASSERT_TRUE(popup_rwh->GetView()); |
- string16 expected_title = ASCIIToUTF16("PASSED2"); |
- string16 error_title = ASCIIToUTF16("FAILED"); |
+ base::string16 expected_title = ASCIIToUTF16("PASSED2"); |
+ base::string16 error_title = ASCIIToUTF16("FAILED"); |
content::TitleWatcher title_watcher(guest_web_contents(), expected_title); |
title_watcher.AlsoWaitForTitle(error_title); |
EXPECT_TRUE(content::ExecuteScript(guest_web_contents(), |