| Index: chrome/browser/ui/cocoa/base_bubble_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/base_bubble_controller.h b/chrome/browser/ui/cocoa/base_bubble_controller.h
|
| index 38bc2c49352af76413382c3b936417fc43051a1b..1db46fe1438f3821838ac658813ecc5267a048ec 100644
|
| --- a/chrome/browser/ui/cocoa/base_bubble_controller.h
|
| +++ b/chrome/browser/ui/cocoa/base_bubble_controller.h
|
| @@ -83,9 +83,14 @@ class TabStripModelObserverBridge;
|
| parentWindow:(NSWindow*)parentWindow
|
| anchoredAt:(NSPoint)anchoredAt;
|
|
|
| -// Creates an autoreleased separator view with a given frame. The height of the
|
| -// frame is ignored.
|
| -- (NSBox*)separatorWithFrame:(NSRect)frame;
|
| +// Creates an autoreleased horizontal separator view with a given frame. The
|
| +// height of the frame is ignored.
|
| +- (NSBox*)horizontalSeparatorWithFrame:(NSRect)frame;
|
| +
|
| +// Creates an autoreleased vertical separator view with a given frame. The
|
| +// width of frame is ignored.
|
| +- (NSBox*)verticalSeparatorWithFrame:(NSRect)frame;
|
| +
|
|
|
| @end
|
|
|
|
|