| Index: chrome/browser/cocoa/tab_window_controller.mm
|
| diff --git a/chrome/browser/cocoa/tab_window_controller.mm b/chrome/browser/cocoa/tab_window_controller.mm
|
| index c8e881c1137b3c011e71d917af996ac1748c712e..984ab35f82f4248d42cf7c5df2baa014a42fdb61 100644
|
| --- a/chrome/browser/cocoa/tab_window_controller.mm
|
| +++ b/chrome/browser/cocoa/tab_window_controller.mm
|
| @@ -23,7 +23,7 @@
|
| }
|
|
|
| - (void)windowDidLoad {
|
| - if ([self isNormalWindow]) {
|
| + if ([self hasTabStrip]) {
|
| // Place the tab bar above the content box and add it to the view hierarchy
|
| // as a sibling of the content view so it can overlap with the window frame.
|
| NSRect tabFrame = [tabContentArea_ frame];
|
| @@ -199,8 +199,8 @@
|
| return @"";
|
| }
|
|
|
| -- (BOOL)isNormalWindow {
|
| - // subclass must implement
|
| +- (BOOL)hasTabStrip {
|
| + // Subclasses should implement this.
|
| NOTIMPLEMENTED();
|
| return YES;
|
| }
|
|
|