| Index: chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
|
| index fb93662e20215ffbfdd7121f84346d0a1df3803c..5d1a29da4c2fe743238e75eedc5469dc029b6955 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
|
| @@ -40,7 +40,7 @@ TEST_F(AutofillNotificationContainerTest, Subviews) {
|
| notifications.push_back(
|
| autofill::DialogNotification(
|
| autofill::DialogNotification::REQUIRED_ACTION,
|
| - ASCIIToUTF16("test")));
|
| + base::ASCIIToUTF16("test")));
|
| ASSERT_FALSE(notifications[0].HasArrow());
|
| [container_ setNotifications:notifications];
|
|
|
| @@ -50,7 +50,7 @@ TEST_F(AutofillNotificationContainerTest, Subviews) {
|
| notifications.push_back(
|
| autofill::DialogNotification(
|
| autofill::DialogNotification::REQUIRED_ACTION,
|
| - ASCIIToUTF16("test")));
|
| + base::ASCIIToUTF16("test")));
|
| ASSERT_FALSE(notifications[1].HasArrow());
|
| [container_ setNotifications:notifications];
|
|
|
|
|