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

Unified Diff: chrome/browser/ui/cocoa/location_bar/ev_bubble_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/ev_bubble_decoration.h
diff --git a/chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h b/chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h
index c0a29aaae604d6b4e5d9a3e5ed9754f2fb4824cc..a7852da0ac60644874d616a1208aa557a0c8f718 100644
--- a/chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h
+++ b/chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -35,13 +35,13 @@ class EVBubbleDecoration : public BubbleDecoration {
NSPoint GetBubblePointInFrame(NSRect frame);
// Implement |LocationBarDecoration|.
- virtual CGFloat GetWidthForSpace(CGFloat width);
- virtual bool IsDraggable();
- virtual NSPasteboard* GetDragPasteboard();
- virtual NSImage* GetDragImage();
- virtual NSRect GetDragImageFrame(NSRect frame);
- virtual bool OnMousePressed(NSRect frame);
- virtual bool AcceptsMousePress();
+ virtual CGFloat GetWidthForSpace(CGFloat width) OVERRIDE;
+ virtual bool IsDraggable() OVERRIDE;
+ virtual NSPasteboard* GetDragPasteboard() OVERRIDE;
+ virtual NSImage* GetDragImage() OVERRIDE;
+ virtual NSRect GetDragImageFrame(NSRect frame) OVERRIDE;
+ virtual bool OnMousePressed(NSRect frame) OVERRIDE;
+ virtual bool AcceptsMousePress() OVERRIDE;
private:
// Keeps a reference to the font for use when eliding.

Powered by Google App Engine
This is Rietveld 408576698