summaryrefslogtreecommitdiffstats
path: root/content/test/content_browser_test_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/test/content_browser_test_test.cc')
-rw-r--r--content/test/content_browser_test_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/test/content_browser_test_test.cc b/content/test/content_browser_test_test.cc
index 8738a00..b9bf217 100644
--- a/content/test/content_browser_test_test.cc
+++ b/content/test/content_browser_test_test.cc
@@ -31,10 +31,10 @@ class ContentBrowserTestSanityTest : public ContentBrowserTest {
void Test() {
GURL url = GetTestUrl(".", "simple_page.html");
- string16 expected_title(ASCIIToUTF16("OK"));
+ base::string16 expected_title(ASCIIToUTF16("OK"));
TitleWatcher title_watcher(shell()->web_contents(), expected_title);
NavigateToURL(shell(), url);
- string16 title = title_watcher.WaitAndGetTitle();
+ base::string16 title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, title);
}
};