| Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
 | 
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
 | 
| index b19fdee3b505930420e59fa9ae3fb7d952c3c21f..6ac5712a8d0d1c6596a32928665a348c256e5d23 100644
 | 
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
 | 
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
 | 
| @@ -1398,15 +1398,15 @@ TEST_F(AutofillDialogControllerTest, BillingVsShippingStreetAddress) {
 | 
|    EXPECT_EQ(ADDRESS_BILLING, form_structure()->field(1)->Type().group());
 | 
|    // Inexact matching; single-line inputs get the address data concatenated but
 | 
|    // separated by commas.
 | 
| -  EXPECT_TRUE(StartsWith(form_structure()->field(0)->value,
 | 
| -                         shipping_profile.GetRawInfo(ADDRESS_HOME_LINE1),
 | 
| -                         true));
 | 
| +  EXPECT_TRUE(base::StartsWith(form_structure()->field(0)->value,
 | 
| +                               shipping_profile.GetRawInfo(ADDRESS_HOME_LINE1),
 | 
| +                               true));
 | 
|    EXPECT_TRUE(EndsWith(form_structure()->field(0)->value,
 | 
|                         shipping_profile.GetRawInfo(ADDRESS_HOME_LINE2),
 | 
|                         true));
 | 
| -  EXPECT_TRUE(StartsWith(form_structure()->field(1)->value,
 | 
| -                         billing_profile.GetRawInfo(ADDRESS_HOME_LINE1),
 | 
| -                         true));
 | 
| +  EXPECT_TRUE(base::StartsWith(form_structure()->field(1)->value,
 | 
| +                               billing_profile.GetRawInfo(ADDRESS_HOME_LINE1),
 | 
| +                               true));
 | 
|    EXPECT_TRUE(EndsWith(form_structure()->field(1)->value,
 | 
|                         billing_profile.GetRawInfo(ADDRESS_HOME_LINE2),
 | 
|                         true));
 | 
| 
 |