| Index: content/browser/site_instance_unittest.cc | 
| diff --git a/content/browser/site_instance_unittest.cc b/content/browser/site_instance_unittest.cc | 
| index 12e269da4e7cef6cfbc41188ad2a1def6e5174e0..b2cb51ca8ace722daf9feb156082d67380e4d31a 100644 | 
| --- a/content/browser/site_instance_unittest.cc | 
| +++ b/content/browser/site_instance_unittest.cc | 
| @@ -137,7 +137,7 @@ TEST_F(SiteInstanceTest, SiteInstanceDestructor) { | 
| EXPECT_EQ(0, siteDeleteCounter); | 
|  | 
| NavigationEntry* e1 = new NavigationEntry(instance, 0, url, GURL(), | 
| -                                            base::i18n::String16WithDirection(), | 
| +                                            string16(), | 
| PageTransition::LINK); | 
|  | 
| // Redundantly setting e1's SiteInstance shouldn't affect the ref count. | 
| @@ -145,8 +145,8 @@ TEST_F(SiteInstanceTest, SiteInstanceDestructor) { | 
| EXPECT_EQ(0, siteDeleteCounter); | 
|  | 
| // Add a second reference | 
| -  NavigationEntry* e2 = new NavigationEntry(instance, 0, url, GURL(), | 
| -                                            base::i18n::String16WithDirection(), | 
| +  NavigationEntry* e2 = new NavigationEntry(instance, 0, url, | 
| +                                            GURL(), string16(), | 
| PageTransition::LINK); | 
|  | 
| // Now delete both entries and be sure the SiteInstance goes away. | 
| @@ -197,7 +197,7 @@ TEST_F(SiteInstanceTest, CloneNavigationEntry) { | 
| &browsingDeleteCounter); | 
|  | 
| NavigationEntry* e1 = new NavigationEntry(instance1, 0, url, GURL(), | 
| -                                            base::i18n::String16WithDirection(), | 
| +                                            string16(), | 
| PageTransition::LINK); | 
| // Clone the entry | 
| NavigationEntry* e2 = new NavigationEntry(*e1); | 
|  |