Index: content/browser/web_contents/web_contents_impl_unittest.cc |
diff --git a/content/browser/web_contents/web_contents_impl_unittest.cc b/content/browser/web_contents/web_contents_impl_unittest.cc |
index d5ac7057c18ae9629a2c0be6e9d7e3ccdd96e547..01c0191f590d809ec329bd26f44a6a42247779db 100644 |
--- a/content/browser/web_contents/web_contents_impl_unittest.cc |
+++ b/content/browser/web_contents/web_contents_impl_unittest.cc |
@@ -284,7 +284,7 @@ class TestWebContentsObserver : public WebContentsObserver { |
const GURL& validated_url, |
bool is_main_frame, |
int error_code, |
- const string16& error_description, |
+ const base::string16& error_description, |
RenderViewHost* render_view_host) OVERRIDE { |
last_url_ = validated_url; |
} |
@@ -318,12 +318,12 @@ TEST_F(WebContentsImplTest, DontUseTitleFromPendingEntry) { |
const GURL kGURL("chrome://blah"); |
controller().LoadURL( |
kGURL, Referrer(), PAGE_TRANSITION_TYPED, std::string()); |
- EXPECT_EQ(string16(), contents()->GetTitle()); |
+ EXPECT_EQ(base::string16(), contents()->GetTitle()); |
} |
TEST_F(WebContentsImplTest, UseTitleFromPendingEntryIfSet) { |
const GURL kGURL("chrome://blah"); |
- const string16 title = ASCIIToUTF16("My Title"); |
+ const base::string16 title = ASCIIToUTF16("My Title"); |
controller().LoadURL( |
kGURL, Referrer(), PAGE_TRANSITION_TYPED, std::string()); |
@@ -2152,7 +2152,7 @@ TEST_F(WebContentsImplTest, FilterURLs) { |
// Check that an IPC with about:whatever is correctly normalized. |
other_contents->TestDidFailLoadWithError( |
- 1, url_from_ipc, true, 1, string16()); |
+ 1, url_from_ipc, true, 1, base::string16()); |
EXPECT_EQ(url_normalized, other_observer.last_url()); |
} |