| 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 f9a234f0f28cbd389d22f5f8c0992dcb213849bb..eaf4956a61f43f70b007dcdd05209f332a6e0e4c 100644
|
| --- a/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.mm
|
| @@ -224,7 +224,7 @@ const CGFloat kSupervisedUserSpacing = 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];
|
| @@ -262,7 +262,7 @@ const CGFloat kSupervisedUserSpacing = 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];
|
| @@ -288,7 +288,7 @@ const CGFloat kSupervisedUserSpacing = 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];
|
|
|