Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7675)

Unified Diff: chrome/browser/ui/cocoa/location_bar/location_icon_decoration.h

Issue 8603006: Add OVERRIDE to chrome/browser/ui/cocoa/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698