| Index: content/test/content_browser_test_test.cc
|
| diff --git a/content/test/content_browser_test_test.cc b/content/test/content_browser_test_test.cc
|
| index 8738a00c4a9fc7261e6545c7776828f9b9c11a6c..b9bf217f38862d5e051975c54b182b95d9dd4fd3 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);
|
| }
|
| };
|
|
|