| Index: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
|
| index 648dc0744bb64fc8eda0a303f4a640e0babaa406..4d0d23af139861e6df3d212ea61e611ffee0b6d8 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
|
| +++ b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
|
| @@ -17,15 +17,15 @@
|
| class KeywordHintDecoration : public LocationBarDecoration {
|
| public:
|
| KeywordHintDecoration();
|
| - virtual ~KeywordHintDecoration();
|
| + ~KeywordHintDecoration() override;
|
|
|
| // Calculates the message to display and where to place the [tab]
|
| // image.
|
| void SetKeyword(const base::string16& keyword, bool is_extension_keyword);
|
|
|
| // Implement |LocationBarDecoration|.
|
| - virtual void DrawInFrame(NSRect frame, NSView* control_view) override;
|
| - virtual CGFloat GetWidthForSpace(CGFloat width) override;
|
| + void DrawInFrame(NSRect frame, NSView* control_view) override;
|
| + CGFloat GetWidthForSpace(CGFloat width) override;
|
|
|
| private:
|
| // Fetch and cache the [tab] image.
|
|
|