Index: chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm |
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm |
index fd31a8350a07a0e995371b673797b94d6e483236..a3e98568cf6b913ff0756dbb76377b3562f5b1d4 100644 |
--- a/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm |
+++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_container.mm |
@@ -37,7 +37,7 @@ |
// If the first notification doesn't have an arrow, reserve empty space. |
if (![[notificationControllers_ objectAtIndex:0] hasArrow]) |
- preferredSize.height += kArrowHeight; |
+ preferredSize.height += autofill::kArrowHeight; |
for (AutofillNotificationController* delegate in |
notificationControllers_.get()) |
@@ -53,7 +53,7 @@ |
NSRect remaining = [[self view] bounds]; |
if (![[notificationControllers_ objectAtIndex:0] hasArrow]) |
- remaining.size.height -= kArrowHeight; |
+ remaining.size.height -= autofill::kArrowHeight; |
for (AutofillNotificationController* delegate in |
notificationControllers_.get()) { |