Index: chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.mm |
diff --git a/chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.mm b/chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.mm |
index b9d8b0c9ce5b28fe6bfd9fad9b4017a23465b5d0..57595b8fbc4a92baaad7eed336930a3ef30275ac 100644 |
--- a/chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.mm |
+++ b/chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.mm |
@@ -213,14 +213,15 @@ void NewCreditCardBubbleCocoa::Show() { |
anchor_point = NSMakePoint( |
NSMidX([anchor_view bounds]), |
NSMinY([anchor_view bounds]) + kWrenchBubblePointOffsetY); |
- [[bubbleController_ bubble] setArrowLocation:info_bubble::kTopRight]; |
+ [[bubbleController_ bubble] |
+ setArrowLocation:views::BubbleBorder::TOP_RIGHT]; |
[[bubbleController_ bubble] setAlignment:info_bubble::kAlignArrowToAnchor]; |
} else { |
anchor_view = browser_view; |
anchor_point = NSMakePoint( |
NSMaxX([browser_view bounds]) - kAnchorlessEndPadding, |
NSMaxY([browser_view bounds]) - kAnchorlessTopPadding); |
- [[bubbleController_ bubble] setArrowLocation:info_bubble::kNoArrow]; |
+ [[bubbleController_ bubble] setArrowLocation:views::BubbleBorder::NONE]; |
if (base::i18n::IsRTL()) { |
anchor_point.x = NSMaxX([anchor_view bounds]) - anchor_point.x; |
[[bubbleController_ bubble] setAlignment: |