| Index: chrome/browser/ui/cocoa/location_bar/location_bar_decoration.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_decoration.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_decoration.mm
|
| index 2468535492c357f6971911e1101f155c0536ea70..210658b465e0ea8c2ad7e3d735ea86dbf96f56ba 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/location_bar_decoration.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/location_bar_decoration.mm
|
| @@ -26,6 +26,13 @@ void LocationBarDecoration::DrawInFrame(NSRect frame, NSView* control_view) {
|
| NOTREACHED();
|
| }
|
|
|
| +void LocationBarDecoration::DrawWithBackgroundInFrame(NSRect background_frame,
|
| + NSRect frame,
|
| + NSView* control_view) {
|
| + // Default to no background.
|
| + DrawInFrame(frame, control_view);
|
| +}
|
| +
|
| NSString* LocationBarDecoration::GetToolTip() {
|
| return nil;
|
| }
|
|
|