| Index: chrome/browser/ui/cocoa/tabs/tab_strip_view.mm
|
| diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm b/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm
|
| index 6f97ac33350f2bb7b8ffc20345c0281be6adf44b..2329650aa54f457d6daf25a517b8faa527c83809 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm
|
| +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm
|
| @@ -66,7 +66,7 @@
|
| NSRect backgroundRect = [self bounds];
|
| backgroundRect.size.height = 2 * [self cr_lineWidth];
|
| if (NSIntersectsRect(backgroundRect, dirtyRect))
|
| - [super drawRect:backgroundRect];
|
| + [self drawBackground:backgroundRect];
|
|
|
| // Draw the border bitmap, which is partially transparent.
|
| NSImage* image = themeProvider->GetNSImageNamed(IDR_TOOLBAR_SHADE_TOP);
|
| @@ -90,7 +90,7 @@
|
| NSRect backgroundRect = [self bounds];
|
| backgroundRect.size.height = [self cr_lineWidth];
|
| if (NSIntersectsRect(backgroundRect, dirtyRect)) {
|
| - [super drawRect:backgroundRect];
|
| + [self drawBackground:backgroundRect];
|
| }
|
|
|
| // Pre-MD the IDR_TOOLBAR_SHADE_TOP image would lay down a light highlight
|
|
|