| 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.
|
|
|