| Index: chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h b/chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h
|
| index ef0a1f990a450db3adc6db346e5c2d20569d5198..6a88963a1c5ad0274d0105b0345215ce7d0dd07f 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h
|
| +++ b/chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h
|
| @@ -21,19 +21,19 @@ class LocationIconDecoration : public ImageDecoration {
|
| virtual ~LocationIconDecoration();
|
|
|
| // Allow dragging the current URL.
|
| - virtual bool IsDraggable();
|
| - virtual NSPasteboard* GetDragPasteboard();
|
| - virtual NSImage* GetDragImage();
|
| - virtual NSRect GetDragImageFrame(NSRect frame);
|
| + virtual bool IsDraggable() OVERRIDE;
|
| + virtual NSPasteboard* GetDragPasteboard() OVERRIDE;
|
| + virtual NSImage* GetDragImage() OVERRIDE;
|
| + virtual NSRect GetDragImageFrame(NSRect frame) OVERRIDE;
|
|
|
| // Get the point where the page info bubble should point within the
|
| // decoration's frame, in the |owner_|'s coordinates.
|
| NSPoint GetBubblePointInFrame(NSRect frame);
|
|
|
| // Show the page info panel on click.
|
| - virtual bool OnMousePressed(NSRect frame);
|
| - virtual bool AcceptsMousePress();
|
| - virtual NSString* GetToolTip();
|
| + virtual bool OnMousePressed(NSRect frame) OVERRIDE;
|
| + virtual bool AcceptsMousePress() OVERRIDE;
|
| + virtual NSString* GetToolTip() OVERRIDE;
|
|
|
| private:
|
| NSRect drag_frame_;
|
|
|