Index: content/browser/site_instance_impl_unittest.cc |
diff --git a/content/browser/site_instance_impl_unittest.cc b/content/browser/site_instance_impl_unittest.cc |
index 8c7a39fe60033d13ba05b3c397e1696817a12bff..ce87d4e7705e0a564097f6c489eb252c5ca19fbc 100644 |
--- a/content/browser/site_instance_impl_unittest.cc |
+++ b/content/browser/site_instance_impl_unittest.cc |
@@ -349,10 +349,10 @@ TEST_F(SiteInstanceTest, SetSite) { |
scoped_refptr<SiteInstanceImpl> instance(static_cast<SiteInstanceImpl*>( |
SiteInstance::Create(NULL))); |
EXPECT_FALSE(instance->HasSite()); |
- EXPECT_TRUE(instance->GetSite().is_empty()); |
+ EXPECT_TRUE(instance->GetSiteURL().is_empty()); |
instance->SetSite(GURL("http://www.google.com/index.html")); |
- EXPECT_EQ(GURL("http://google.com"), instance->GetSite()); |
+ EXPECT_EQ(GURL("http://google.com"), instance->GetSiteURL()); |
EXPECT_TRUE(instance->HasSite()); |
@@ -662,7 +662,7 @@ TEST_F(SiteInstanceTest, HasWrongProcessForURL) { |
SiteInstance::Create(browser_context.get()))); |
EXPECT_FALSE(instance->HasSite()); |
- EXPECT_TRUE(instance->GetSite().is_empty()); |
+ EXPECT_TRUE(instance->GetSiteURL().is_empty()); |
instance->SetSite(GURL("http://evernote.com/")); |
EXPECT_TRUE(instance->HasSite()); |