| Index: chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
|
| index 77f480dd03be666faf7cabcb67fe06799a654134..3fec92bd609557532cfb398db7947318e9448548 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
|
| @@ -20,11 +20,11 @@ TEST(AutofillDialogTypesTest, WarningColorMatches) {
|
|
|
| // Tests for correct parsing of anchor text ranges.
|
| TEST(AutofillDialogTypesTest, DialogNotificationLink) {
|
| - base::string16 text(ASCIIToUTF16("Notification without anchor text"));
|
| + base::string16 text(base::ASCIIToUTF16("Notification without anchor text"));
|
| DialogNotification notification(DialogNotification::WALLET_ERROR, text);
|
| EXPECT_TRUE(notification.link_range().is_empty());
|
|
|
| - text = ASCIIToUTF16("Notification with |anchor text|");
|
| + text = base::ASCIIToUTF16("Notification with |anchor text|");
|
| notification = DialogNotification(DialogNotification::WALLET_ERROR, text);
|
| base::char16 bar = '|';
|
| EXPECT_EQ(base::string16::npos, notification.display_text().find(bar));
|
|
|