Index: chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm |
diff --git a/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm b/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm |
index 98335a3c1fd6471b540742c1ea24f3b876b3ca20..3a0f0d1b012a99bff620f637c039c876a18c0832 100644 |
--- a/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm |
+++ b/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm |
@@ -223,7 +223,7 @@ const CGFloat kManagedUserSpacing = 26.0; |
[contentView addSubview:newButton]; |
yOffset += NSHeight([newButton frame]) + kVerticalSpacing; |
- NSBox* separator = [self separatorWithFrame: |
+ NSBox* separator = [self horizontalSeparatorWithFrame: |
NSMakeRect(10, yOffset, NSWidth([contentView frame]) - 20, 0)]; |
[separator setAutoresizingMask:NSViewWidthSizable]; |
[contentView addSubview:separator]; |
@@ -261,7 +261,7 @@ const CGFloat kManagedUserSpacing = 26.0; |
[contentView addSubview:newButton]; |
yOffset += NSHeight([newButton frame]) + kVerticalSpacing; |
- NSBox* separator = [self separatorWithFrame: |
+ NSBox* separator = [self horizontalSeparatorWithFrame: |
NSMakeRect(10, yOffset, NSWidth([contentView frame]) - 20, 0)]; |
[separator setAutoresizingMask:NSViewWidthSizable]; |
[contentView addSubview:separator]; |
@@ -287,7 +287,7 @@ const CGFloat kManagedUserSpacing = 26.0; |
[contentView addSubview:info]; |
yOffset += NSHeight([info frame]) + kVerticalSpacing; |
- separator = [self separatorWithFrame: |
+ separator = [self horizontalSeparatorWithFrame: |
NSMakeRect(10, yOffset, NSWidth([contentView frame]) - 20, 0)]; |
[separator setAutoresizingMask:NSViewWidthSizable]; |
[contentView addSubview:separator]; |